/* =========================================
   ORDER FORM - STANDALONE BOOTSTRAP STYLE
========================================= */

/* Container */
.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
}

/* Desktop container widths */
@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}


/* =========================================
   ROW
========================================= */

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}


/* =========================================
   COLUMNS
========================================= */

/* Columns */
.col-md-3,
.col-md-4,
.col-md-6 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    box-sizing: border-box;
}

@media (min-width: 768px) {

    .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-md-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 767px) {

    .col-md-3,
    .col-md-4,
    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

 /* =========================================
   ADDITIONAL ORDER FORM COLUMNS
========================================= */

.col-md-2,
.col-md-5,
.col-md-7 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    box-sizing: border-box;
}

@media (min-width: 768px) {

    /* 2 / 12 = 16.6667% */
    .col-md-2 {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    /* 5 / 12 = 41.6667% */
    .col-md-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    /* 7 / 12 = 58.3333% */
    .col-md-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

}


/* Mobile */
@media (max-width: 767px) {

    .col-md-2,
    .col-md-5,
    .col-md-7 {
        flex: 0 0 100%;
        max-width: 100%;
    }

}

/* Radio button area */

.col-md-2 .form-group {
    margin-bottom: 20px;
}

.col-md-2 .form-group > div {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 10px;
}

.col-md-2 input[type="radio"] {
    width: 16px;
    height: 16px;
    margin: 0;
    flex-shrink: 0;
    cursor: pointer;
}

.col-md-2 input[type="radio"] + label {
    margin: 0;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}
/* =========================================
   FORM GROUP
========================================= */

.form-group {
    margin-bottom: 1rem;
}


/* =========================================
   LABEL
========================================= */

.form-group label {
    display: inline-block;

    margin-bottom: 8px;

    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;

    color: #26364d;
}


/* =========================================
   FORM CONTROL
========================================= */

.form-control {
    display: block;

    width: 100%;
    height: 50px;

    padding: 10px 15px;

    font-family: inherit;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;

    color: #495057;
    background-color: #fff;

    background-clip: padding-box;

    border: 1px solid #ced4da;
    border-radius: 5px;

    transition:
        border-color .15s ease-in-out,
        box-shadow .15s ease-in-out;

    box-sizing: border-box;
}


/* =========================================
   SELECT
========================================= */

select.form-control {
    cursor: pointer;

    appearance: auto;
    -webkit-appearance: auto;
    -moz-appearance: auto;
}


/* =========================================
   TEXTAREA
========================================= */

textarea.form-control {
    height: auto;
    min-height: 180px;

    resize: vertical;
}


/* =========================================
   FILE INPUT
========================================= */

input[type="file"].form-control {
    height: auto;
    min-height: 50px;

    padding: 8px 10px;

    cursor: pointer;
}


/* =========================================
   NUMBER INPUT
========================================= */

input[type="number"].form-control {
    appearance: textfield;
    -moz-appearance: textfield;
}


/* =========================================
   FOCUS
========================================= */

.form-control:focus {
    color: #495057;

    background-color: #fff;

    border-color: #80bdff;

    outline: 0;

    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.12);
}


/* =========================================
   PLACEHOLDER
========================================= */

.form-control::placeholder {
    color: #999;
    opacity: 1;
}


/* =========================================
   DISABLED
========================================= */

.form-control:disabled,
.form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1;
}


/* =========================================
   FILE BUTTON
========================================= */

input[type="file"]::file-selector-button {
    margin-right: 10px;

    padding: 8px 14px;

    border: 0;
    border-radius: 4px;

    background: #172b4d;
    color: #fff;

    font-size: 13px;
    font-weight: 600;

    cursor: pointer;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .col-md-4,
    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .row {
        margin-right: -10px;
        margin-left: -10px;
    }

    .col-md-4,
    .col-md-6 {
        padding-right: 10px;
        padding-left: 10px;
    }

}
/* =========================================
   ORDER PRICE / TOTAL COST
========================================= */

#orderprice {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 3px 0px 14px 0px;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    border: 1px solid transparent;
    border-radius: 5px;
    margin-bottom: 30px;
    overflow: hidden;
}


/* Bootstrap btn-block */
.btn-block {
    display: block;
    width: 100%;
}


/* Bootstrap btn-lg */
.btn-lg {
    padding: 12px 20px;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 5px;
}


/* Bootstrap primary */
.btn-primary {
    color: #fff;
    background-color: #0c1a3d;
    border-color: #0c1a3d;
}


/* Bootstrap warning */
.btn-warning {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}


/* Your current custom blue */
#orderprice.btn-warning {
    background: #0c1a3d !important;
    color: #fff !important;
}


/* Disabled-style appearance for DIV */
#orderprice[disable],
#orderprice[disabled],
#orderprice.disabled {
    cursor: default;
    pointer-events: none;
}


/* Clearfix */
.clearfix::after {
    display: block;
    clear: both;
    content: "";
}


/* Form control */
.form-control {
    display: block;
    width: 100%;
    box-sizing: border-box;

    padding: 10px 15px;

    font-size: 14px;
    line-height: 1.5;

    color: #495057;
    background-color: #fff;

    border: 1px solid #ced4da;
    border-radius: 5px;
}


/* Row */
.row {
    display: flex;
    flex-wrap: wrap;

    margin-right: -15px;
    margin-left: -15px;
}


/* Column */
.col-md-12 {
    position: relative;

    width: 100%;

    padding-right: 15px;
    padding-left: 15px;

    box-sizing: border-box;
}


/* Label */
.col-md-12 > label {
    display: inline-block;

    margin-bottom: 8px;

    font-size: 14px;
    font-weight: 600;

    color: #26364d;
} 
 .auth-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: inherit;
    text-decoration: none;
}

.auth-icon {
    display: inline-block;
}

.user-icon {
    position: relative;
    width: 16px;
    height: 16px;
    display: inline-block;
}

/* Head */
.user-icon::before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    top: 0;
    left: 5px;
    border: 1.5px solid currentColor;
    border-radius: 50%;
}

/* Body */
.user-icon::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 6px;
    bottom: 0;
    left: 2px;
    border: 1.5px solid currentColor;
    border-radius: 8px 8px 3px 3px;
}

.lock-icon {
    position: relative;
    width: 14px;
    height: 11px;
    display: inline-block;
    border: 1.5px solid currentColor;
    border-radius: 2px;
    margin-top: 4px;
}

.lock-icon::before {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    left: 2px;
    top: -7px;
    border: 1.5px solid currentColor;
    border-bottom: 0;
    border-radius: 7px 7px 0 0;
}

.auth-divider {
    margin: 0 8px;
    opacity: 0.45;
}
.pt-5{
    padding-top:5em;
} 

.pb-5{
    padding-bottom:5em;
} 
/* Account Dashboard Cards */
.iconboxmain {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

   
    min-height: 150px;

    margin-bottom: 20px;
    padding: 20px 15px;

    background: #fff;
    
    border-radius: 14px;

    color: var(--navy-dark);
    text-decoration: none;

    

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.iconboxmain:hover {
    color: var(--navy-dark);
    text-decoration: none;

    transform: translateY(-5px);

    border-color: rgba(16, 36, 81, 0.20);
    box-shadow: 0 14px 32px rgba(16, 36, 81, 0.13);
}

/* Icon */
.iconboxmain .iconboxy {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 13px;

    border-radius: 12px;

    background: linear-gradient(
        135deg,
        var(--navy-dark) 0%,
        var(--navy) 55%,
        #102451 100%
    );

    color: #fff;
    font-size: 22px;

    box-shadow: 0 7px 18px rgba(16, 36, 81, 0.20);
}

/* Text */
.iconboxmain {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1px;
}

/* Mobile */
@media (max-width: 767px) {
    .iconboxmain {
        min-height: 135px;
        margin-bottom: 15px;
        padding: 15px 10px;
        font-size: 13px;
    }

    .iconboxmain .iconboxy {
        width: 46px;
        height: 46px;
        font-size: 19px;
        margin-bottom: 10px;
    }
    
}
.iconboxy svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}
/* =========================================
   Premium Orders Table
========================================= */

.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;

    background: #fff;
    border: 1px solid rgba(16, 36, 81, 0.08);
    border-radius: 14px;

    box-shadow: 0 8px 28px rgba(16, 36, 81, 0.07);
}

/* Table */
.table-responsive .table {
    width: 100%;
    min-width: 850px;
    margin-bottom: 0;

    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
}

/* Header */
.table-responsive .table thead th,
.table-responsive .table tr:first-child th {
    background: linear-gradient(
        135deg,
        var(--navy-dark) 0%,
        var(--navy) 55%,
        #102451 100%
    ) !important;

    color: #fff !important;
    border: 0 !important;

    padding: 15px 14px;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2px;

    white-space: nowrap;
    vertical-align: middle;
}

/* Rounded header corners */
.table-responsive .table tr:first-child th:first-child {
    border-radius: 14px 0 0 0;
}

.table-responsive .table tr:first-child th:last-child {
    border-radius: 0 14px 0 0;
}

/* Table rows */
.table-responsive .table tbody tr:not(:first-child) {
    transition: background 0.2s ease;
}

.table-responsive .table tbody tr:not(:first-child):hover {
    background: #f8faff;
}

/* Table cells */
.table-responsive .table td {
    padding: 16px 14px;

    color: #344054;
    font-size: 13px;

    border-top: 1px solid #edf0f5 !important;
    border-bottom: 0;
    vertical-align: middle;

    line-height: 1.5;
}

/* Order ID */
.table-responsive .table td:first-child {
    color: var(--navy);
    font-weight: 600;
    white-space: nowrap;
}

/* Topic */
.table-responsive .table td:nth-child(2) {
    min-width: 220px;
    max-width: 320px;

    font-weight: 500;
    color: #26344d;
}

/* Date */
.table-responsive .table td:nth-child(3) {
    white-space: nowrap;
    color: #667085;
}

/* Payment status */
.table-responsive .table td:nth-child(4) {
    min-width: 180px;
}

/* Option */
.table-responsive .table td:nth-child(5) {
    min-width: 150px;
}

/* =========================================
   Payment Buttons
========================================= */

.table-responsive .btnf,
.table-responsive .dropbtn {
    border: 0 !important;
    border-radius: 8px !important;

    padding: 9px 13px !important;

    font-size: 12px;
    font-weight: 600;

    background: linear-gradient(
        135deg,
        var(--navy-dark) 0%,
        var(--navy) 55%,
        #102451 100%
    ) !important;

    color: #fff !important;

    box-shadow: 0 4px 12px rgba(16, 36, 81, 0.14);

    transition: all 0.2s ease;
}

.table-responsive .btnf:hover,
.table-responsive .dropbtn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(16, 36, 81, 0.20);
}

/* =========================================
   Order Details / Conversation
========================================= */

.table-responsive td.price a {
    color: var(--navy);
    font-weight: 600;
    text-decoration: none;
}

.table-responsive td.price a:hover {
    color: #102451;
    text-decoration: underline;
}

.table-responsive td.price .fa {
    margin-right: 5px;
    color: var(--navy);
}

/* =========================================
   Dropdown
========================================= */

.table-responsive .dropdown1 {
    position: relative;
    display: inline-block;
}

.table-responsive .dropdown-content {
    display: none;
    position: absolute;

    left: 0;
    top: calc(100% + 6px);

    min-width: 190px;
    z-index: 20;

    background: #fff;
    border: 1px solid #e8ebf1;
    border-radius: 9px;

    padding: 5px;

    box-shadow: 0 12px 30px rgba(16, 36, 81, 0.15);
}

.table-responsive .dropdown1:hover .dropdown-content {
    display: block;
}

.table-responsive .dropdown-content button {
    display: block;

    width: 100% !important;

    border: 0;
    border-radius: 6px;

    padding: 10px 12px;

    background: transparent;
    color: #344054;

    font-size: 12px;
    font-weight: 500;

    text-align: left;
    cursor: pointer;

    transition: background 0.2s ease;
}

.table-responsive .dropdown-content button:hover {
    background: #f3f6fb;
    color: var(--navy);
}

/* =========================================
   Mobile
========================================= */

@media (max-width: 767px) {

    .table-responsive {
        border-radius: 10px;
    }

    .table-responsive .table {
        min-width: 800px;
    }

    .table-responsive .table th {
        padding: 12px 10px;
        font-size: 12px;
    }

    .table-responsive .table td {
        padding: 13px 10px;
        font-size: 12px;
    }
}
.text-center{
    text-align:center;
}