body {
}

* {
    transition: 0.2s;
}

select {
    width: 100%;
    padding: 12px;
}

.pamodal-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.modal {
    width: 100%;
    height: 100%;
    background-color: white;
    position: relative;
    border: 2px solid lightgrey;
    border-radius: 12px;
    overflow: hidden;
}

@media screen and (max-width: 960px) {
    .modal {
        width: 98%;
        height: 98%;
    }
}

.navigator {
    width: 100%;
    height: 15%;
    position: relative;
    background-color: white;
    border-bottom: 2px solid #f2f2f2;
    display: none;
}

.fields_container {
    height: auto;
    overflow: auto;
}

.in {
    width: 92.2%;
    animation: show 0.3s;
}

.btm_bar {
    width: 100%;

    border-top: 3px solid #f2f2f2;
    box-sizing: border-box;
    padding: 10px;
    padding-right: 35px;
    padding-left: 35px;
}

.info {
    height: 40px;
}

.navigator .steps {
    min-width: 60px;
    min-height: 60px;
    border-radius: 100px;
    background: #d4d4d4;
}

.navigator .review {
    background: #f9a305 !important;
}

.navigator .hor_line {
    width: 100px;
    height: 5px;
    background-color: #d4d4d4;
}

.hor_line::before {
    content: "";
    display: block;
    width: 0;
    height: 100%;
    background-color: #2196f3;
    transition: 0.6s;
}

.fields_container input {
    height: 50px;
    border: 2px solid #bcbcbc;
    box-sizing: border-box;
    font-size: 17px;
    font-weight: bold;
    padding: 10px;

    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.fields_container input:focus {
    outline-color: #2196f3;
}

.fields_container textarea {
    width: 100%;
    height: 100px;
    border: 2px solid #bcbcbc;
    box-sizing: border-box;
    font-size: 17px;
    font-weight: bold;
    padding: 10px;

    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.fields_container textarea:focus {
    outline-color: #2196f3;
}

.shipment_type input {
    color: #2196f3;
}

.shipement_documents .in_2 input {
    text-align: center;
}

.grid-box {
    border-radius: 12px;
}

input {
    border-radius: 6px;
}

.shipment_type .grid-box {
    width: 20%;
    height: auto;
    padding: 12px;
    background-color: rgb(219, 219, 219);
    flex-direction: row;
    column-gap: 10px;
}

.shipment_type .container_no {
    /* display: none; */
}

.shipement_documents .grid-box {
    width: 33.3%;
    height: 180px;

    position: relative;
    align-items: flex-start;
}

.shipment_type .grid-box i {
    font-size: 20px;
}

.n-1 .in_2 {
    /* display: none; */
}

.shipement_documents .grid-box {
    flex-direction: row;
    column-gap: 10px;
    height: auto;
    padding: 14px;
    border-radius: 5px;
}

.shipement_documents .grid-box i {
    font-size: 20px;
}

.shipement_documents input {
    background-color: #e7e7e7;
}

.fw input {
    width: 100%;
}

.btm_bar .info {
    color: grey;
    font-family: sans-serif;
}

.btm_bar .mui-btn {
}

.n-1 {
    display: flex;
}

.n-2 {
    /* display: none; */
}

.n-3 {
    /* display: none; */
}

.shipement_documents .in_2 {
    opacity: 0.55;
}

.shipement_documents .in_3 {
    opacity: 0.55;
}

.modal .active {
    background-color: #2196f3;
    color: white;
}

.n-3,
.n-2,
.n-4 {
    opacity: 0.1;
    display: none;
}

.in_1 .grid-box:hover {
    background-color: #2196f3;
    color: white;
}

.in_1 input {
    color: black;
    line-height: 22px;
    font-size: 12px;
}

.in_1 .grid-box:hover .help-invoice,
.in_1 .grid-box:hover .help-booking_sheet {
    display: block;
}

.shipment_summary .houses {
    flex-wrap: wrap;
    row-gap: 10px;
}

.shipment_summary .houses input[type="button"] {
    width: 13.2%;
    height: 40px;
    padding: 5px;
    background: none;
    border: 0px;
    border-bottom: 1px solid dimgrey;
}

.alert {
    width: 98%;
    height: 92%;
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: 1;
    background-color: #f2f2f2c3;
    display: none;
    overflow: hidden;
}

.alert h4 {
    font-weight: bold;
    color: grey;
}

.alert .alertcontainer {
    width: 590px;
    height: auto;
    max-height: 500px;
    background-color: white;
    border: 1px solid #e1e1e1;
    border-radius: 12px;
    overflow: hidden;
    display: none;
    animation: show 0.3s;
}

.alert .alertcontainer .head {
    background: #f1f1f1;
}

.alert .alertcontainer .msg {
    overflow-y: auto;
    height: auto;
    max-height: 300px;
}

.alert .alertcontainer .msg::-webkit-scrollbar {
    width: 5px;
}

.alert .alertcontainer .msg::-webkit-scrollbar-track {
    background-color: white;
}

.alert .alertcontainer .msg::-webkit-scrollbar-thumb {
    background-color: #e4e4e4;
}

.alert .alertcontainer table {
    width: 100%;
}

.alert .alertcontainer td {
    width: 100%;
    background-color: #f2f2f2c3;
    padding: 12px;
    box-sizing: border-box;
    font-weight: bold;
    margin-bottom: 10px;
}

.alert .alertcontainer .error td {
    color: #ff8d8d;
}

.alert .alertcontainer .info td {
    color: #3f51b5;
}

.alert .alertcontainer p {
    margin: unset;
}

.alert .btm_close {
    height: 70px;
    flex-direction: row !important;
    justify-content: end !important;
}

@keyframes show {
    from {
        position: relative;
        top: 30px;
    }

    to {
        position: relative;
        top: 0;
    }
}

.wave {
    background-color: #3f68c5;
    position: absolute;
    top: 110%;
    height: 200%;
    width: 200%;
    border-radius: 38%;
    left: -50%;
    transform: rotate(360deg);
    transition: all 5s ease;
    animation: wave 30s linear infinite;
}

@keyframes wave {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(3600deg);
    }
}

.help-invoice,
.help-booking_sheet {
    font-size: 14px !important;
    position: absolute;
    right: 15px;
    top: 15px;
    display: none;
    cursor: pointer;
}

.help-invoice:hover,
.help-booking_sheet:hover {
    transform: scale(1.2);
}

.main_cont {
    width: 100%;
    height: 92.5%;
    position: absolute;
    bottom: 0;
    overflow-y: scroll;
}

.step_head {
    align-items: flex-start;
    font-weight: bold;
    border-bottom: 1px solid #c0c0c0;
    margin-bottom: 20px;
    padding-left: 10px;
}

.step_head h4 {
    font-size: 12px;
}

.row {
    flex-direction: column !important;
}

.col_mode {
    flex-direction: row;
    column-gap: 10px;
}

.n-4 b {
    font-size: 10px;
    margin-bottom: 5px;
    color: rgb(90, 90, 90);
}

.n-4 input {
    height: 30px;
    border: 1px solid rgb(235, 235, 235);
    font-size: 12px;
    line-height: 10px;
    outline: none;
    text-transform: uppercase;
    color: grey;
}

.n-4 textarea {
    border-radius: 12px;
    outline: none;
    font-size: 12px;
}

.n-4 .grid-box {
    margin-left: 3px;
}

.n-4 textarea[name="notes"] {
    display: none;
}

cell {
    color: white;
    font-weight: bold;
    background: #ff8d8d;
    padding: 0px 8px;
}

sheet {
    color: white;
    font-weight: bold;
    background: #ff8d8d;
    padding: 0px 8px;
}

.prealert-grid-box {
    transition: all 0.3s ease;
    cursor: pointer;
}

.prealert-grid-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.prealert-grid-box.active {
    border: 2px solid #000;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}

.shipment-air {
    background-color: #e0f7fa !important;
    color: #006064 !important;
}

.shipment-sea {
    background-color: #00796b !important;
    color: #ffffff !important;
}

.shipment-road {
    background-color: #fbc02d !important;
    color: #000000 !important;
}

.shipment-rail {
    background-color: #7e57c2 !important;
    color: #ffffff !important;
}

.shipment-other {
    background-color: #cfd8dc !important;
    color: #000000 !important;
}
