:root {
    --col_default: #1C2559;
    --col_grey: #B1B3B6;
    --col_blue: #4B85F9;
    --col_medium_grey: #EBF0F6;
}

body {
    letter-spacing: 0.5px;
    color: var(--col_default);
}

a{
    text-decoration: none;
}

/* ---- hide arrows for the number type input ---- */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
/* ---- /hide arrows for the number type input ---- */

label{
    color: var(--col_grey);
    margin-bottom: 5px;
}

.pagination a {
    display: inline-block;
    padding: 2px 10px;
    background: #f5f5f5;
    margin: 0 5px;
    border-radius: 2px;
}

    .pagination a:hover {
        background: #dfdfdf;
    }

.common_padded_sec{
    padding: 40px 0;
}

.logo_header{
    padding: 10px 0;
}

.logo{
    max-width: 150px;
}

.btn_blue{
    background: var(--col_blue);
    color: white;
    display: inline-block;
    padding: 4px 15px;
    border-radius: 3px;
    border: 0;
}

.logo_header{
    border-bottom: 1px solid var(--col_medium_grey);
}

.btn_login_register{
    margin-top: 12px;
    margin-left: 30px;
}

/*--- Video --- */
.video-container {
    width: 100%;
    /* max-height: 600px; */
    max-height: 350px;
    overflow: hidden;
    /* position: fixed; */
    position: relative;
    top: 0;
    right: 0;
    /* z-index: -100; */
}

.video-container video {
    position: relative;
    width: auto;
    min-width: 100%;
    height: auto;
    /* background: transparent url(video-bg.jpg) no-repeat; */
    background-size: cover;

    display: block;
}

.video_banner{
    padding: 30px 0;
}

.video_banner .btn_watch{
    position: absolute;
    /* right: 0; */
    right: 40%;
    bottom: 0;
    z-index: 20;
}
/*--- /Video --- */

/* --- About --- */
.about_section{
    padding: 30px 0;
}

.main_features{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.main_features_item{
    background-position: left;
    background-repeat: no-repeat;
    /* background-size: contain; */
    background-size: 24px;
    padding-left: 35px;
    margin: 15px 0;
}

    .feat_icon_freshlycaught{
        background-image: url('../images/fishing_icon.svg');
    }

    .feat_icon_freecleaning{
        background-image: url('../images/cleaning_icon.svg');
    }

    .feat_icon_freedelivery{
        background-image: url('../images/delivery_icon.svg');
    }

    .feat_icon_nochemicals{
        background-image: url('../images/nochemicals_icon.svg');
    }

.padded_li li{
    margin: 5px 0;
}
/* --- /About --- */


/* --- Intro Video Section */
.introvideo_section{
    padding: 40px 0;
}
/* --- /Intro Video Section */


/* ---------- STEPS SECTION ----------- */
.steps_section {
    padding: 40px 0;
    border-top: 1px solid var(--col_medium_grey);
    border-bottom: 1px solid var(--col_medium_grey);
}

.step_item{
    text-align: center;
    max-width: 150px;
    margin: 0 auto;
    position: relative;
}

    .step_item::after{
        content: "";
        background: url('../images/right_arrow_icon.svg') no-repeat;
        width: 20px;
        height: 20px;
        position: absolute;
        right: -50%;
        top: 20px;
        background-size: contain;
    }

    .steps_section .col-md-3:last-child .step_item::after{
        display: none;
    }

.step_item_circle{
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #D2E1FF;
    color: #175BE2;
    font-weight: bold;
    font-size: 22px;

    margin: 0 auto;
    margin-bottom: 20px;
}

.step_item a{
    color: #696E8C;
}

.step_item a:hover{
    color: #1C2559;
}
/* ---------- /STEPS SECTION ----------- */



/* ---- Fish List Section ---- */

.in_qty{
    font-weight: bold;
    font-size: 20px;
}

.fish_list_section{
    padding: 40px 0;
    background: #fbfbfb;
}

.fish_item {
    /* border: 1px solid #f8f8f8; */
    border: 1px solid var(--col_medium_grey);
    margin: 10px 0;
    border-radius: 5px;

    background: white;
}

.fish_item_details{
    padding: 15px;
}

.fish_item_details label{
    color: var(--col_grey);
    margin-bottom: 5px;
}

.fish_item_header {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    margin-bottom: 10px;
}

.fish_item_price{
    color: #175BE2;
}

.fish_item_price small{
    color: var(--col_grey);
}

.btn_buy {
    font-size: 18px;
    padding: 10px 25px;
}

.fish_item_buy_sec {
    margin-top: 20px;
}
/* ---- /Fish List Section ---- */


.grad_box_feat{
    /* background-image: linear-gradient( 109.6deg, rgba(156,252,248,1) 11.2%, rgba(110,123,251,1) 91.1% ); */
    background-image: linear-gradient( 95.2deg, rgba(173,252,234,1) 26.8%, rgba(192,229,246,1) 64% );
    padding: 20px;
    border-radius: 10px;
    font-size: 18px;
    margin: 20px 0;
    font-weight: bold;
}


.bottom_footer{
    padding: 20px 0;
    color: var(--col_grey);

    font-size: 13px;
    border-top: 1px solid var(--col_medium_grey);
}


/* --- About Us Section --- */
.aboutus_setion{
    padding: 40px 0 10px 0;
    border-top: 1px solid var(--col_medium_grey);
}
/* --- /About Us Section --- */


/* --- Contact Us Section --- */
.contactus_section{
    padding: 40px 0;
    border-top: 1px solid var(--col_medium_grey);
}

.contactus_section li{
    margin: 20px 0;
}
/* --- /Contact Us Section --- */


/* --- Weigh Section --- */
.weigh_section{
    padding:  15px 0 60px 0;
}
/* --- /Weigh Section --- */

.cart_fish_header{
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.cart_fish_title{
    font-size: 18px;
}

.cart_fish_title strong{
    margin-left: 5px;
}

.current_status_container{
    margin: 30px 0 20px 0;
}

.current_status_label{
    font-size: 14px;
    margin-bottom: 5px;
    color: var(--col_grey);
}

.current_status{

}

.current_status span{
    display: inline-block;
    background-color: grey;
    padding: 6px 15px;
    border-radius: 5px;
    color: white;
    text-transform: uppercase;
}

.cart_total {
    border-top: 1px dashed grey;
    margin-top: 10px;
    padding-top: 10px;
    font-weight: bold;
    margin-bottom: 20px;
}

.order_num_container{
    background: var(--col_medium_grey);
    padding: 10px 10px;
    font-size: 20px;
    border: 2px dashed #cad4e1;
    text-align: center;
}

.admin_activecarts_sec{
    padding: 40px 0;
}

#top_cart_notify_bar{
    position: sticky;
    background: #ffcb00eb;
    z-index: 55;
    top: 0;
    padding: 10px 0;
    text-align: center;
}


/* ADMIN: Update Cart */
.admin_updatecart_sec{
    padding: 60px 0;
}

.cart_container_after_weighing {
    background-color: #f1fff5;
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
    border: 1px solid #dee2e6;
    margin-top: 20px;
    border-radius: 5px;
    padding-top: 30px;
    font-size: 18px;
}

    .cart_container_after_weighing::before {
        content: "After Weighing";
        position: absolute;
        left: 15px;
        top: -13px;
        padding: 2px 10px;
        background: #c5f1d2;
        font-size: 14px;
    }

    .cart_container_after_weighing input{
        font-size: 18px;
    }


#cart_actual_weight {
    background-color: #f1fff5;
    padding: 15px 20px;
    margin-bottom: 20px;
    position: relative;
    border: 1px solid #dee2e6;
    margin-top: 20px;
    border-radius: 5px;
    font-size: 20px;
    text-align: center;
}

.grey_badge_item {
    display: inline-block;
    background: #f1f1f1;
    margin: 10px;
    padding: 2px 10px;
    border-radius: 3px;
}



.dashboard_totals{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.dashboard_totals_item {
    margin: 10px;
    border: 1px solid lightgray;
    text-align: center;
    font-size: 18px;
}

.dashboard_total_item_title {
    padding: 10px 20px;
    background: #f8f8f8;
}

.dashboard_total_item_value {
    font-weight: bold;
    font-size: 22px;
    padding: 10px;
}

/* Orders - Customer */

.order_item_header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.order_item_id {
    font-size: 20px;
}

.order_item_box {
    border: 1px solid lightgrey;
    padding: 20px;
    margin: 30px 0;
}

.order_item_details{
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
}

.order_item_date {
    color: #969dbc;
}

.order_item_totalamount {
    font-size: 18px;
    color: green;
    font-weight: bold;
}

.order_item_status {
    background: #f1f1f1;
    padding: 2px 10px;
}

.failed_circle {
    font-size: 60px;
    border: 3px solid lightcoral;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 150px;
    color: lightcoral;
}

.success_circle {
    font-size: 60px;
    border: 3px solid lightgreen;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 150px;
    color: lightgreen;
}


/* ----- status ----- */

.status_AWAITING_CLEANING {
    background: lightcyan;
    display: inline-block;
    padding: 3px 8px;
}

.status_PENDING_PAYMENT {
    background: #ffefe0;
    display: inline-block;
    padding: 3px 8px;
}

.status_DELIVERED{
    background: #a2ffc3;
    display: inline-block;
    padding: 3px 8px;
}


/* ----- user type ----- */

.usertype_ADMIN{
    background: #ecffe0;
    display: inline-block;
    padding: 3px 8px;
}

.usertype_CUSTOMER{
    background: #e0efff;
    display: inline-block;
    padding: 3px 8px;
}


.panel_box{
    background: #f4f4f4;
    padding: 10px 15px;
}