@media (max-width: 720px) {
    #mobile_view_hide {
        display: none;
    }

    #mobile_view_hide input,
    #mobile_view_hide textarea,
    #mobile_view_hide button {
        pointer-events: none;
    }
}

#mobile_view_show {
    display: none;
}

@media (max-width: 720px) {
    #mobile_view_show {
        display: block;
    }
}

/* Optional styling for the datalist options (e.g., background color, font size, etc.) */
#vessel_options option {
    background-color: #f9f9f9;
    color: #333;
    font-size: 14px;
    padding: 5px;
}

/*==========================loading============================*/
/* CSS for the loading container */
.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200px;
    /* Adjust the height as needed */
}

.flipping-spinner {
    width: 76px;
    height: 70px;
    animation: flip 1.5s linear infinite;
}

@keyframes flip {

    0%,
    100% {
        transform: perspective(200px) rotateY(0deg);
    }

    50% {
        transform: perspective(200px) rotateY(180deg);
    }
}

/* CSS for the rotating spinner */
.rotating-spinner {
    width: 76px;
    /* Adjust the size of the spinner image */
    height: 70px;
    /* Adjust the size of the spinner image */
    animation: spin 2.5s linear infinite;
    /* CSS animation to rotate the spinner */
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* CSS for the loading text */
.loading-text {
    margin-top: 10px;
    font-size: 18px;
    /* Adjust the font size as needed */
    font-weight: bold;
    color: #555;
    /* Adjust the color to be less vibrant */
    font-family: 'Arial', sans-serif;
    /* Change to desired font-family */
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
    /* Add a subtle text shadow */
    animation: fadeInOut 2s ease-in-out infinite;
    /* Add a subtle fade-in and fade-out animation */
}

@keyframes fadeInOut {

    0%,
    100% {
        opacity: 0.6;
        /* Adjust the opacity for fade-in and fade-out */
    }

    50% {
        opacity: 1;
    }
}

/* CSS for the loading dots animation */
.loading-dots {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
}

.loading-dots div {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #888;
    animation: loading 1.4s infinite ease-in-out both;
}

.loading-dots div:nth-child(1) {
    animation-delay: -0.32s;
}

.loading-dots div:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes loading {

    0%,
    80%,
    100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

/*==========================forms steps============================*/
/* Mark input boxes that gets an error on validation: */
input.invalid {
    background-color: #ffdddd;
}

/* Hide all steps by default: */
.tab {
    display: none;
}

/* Make circles that indicate the steps of the form: */
.step {
    height: 23px;
    width: 23px;
    margin: auto;
    background-color: #bbbbbb;
    border: none;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.8;
}

.step.active {
    opacity: 1;
}

/* Mark the steps that are finished and valid: */
.step.finish {
    background-color: #4B9FE1;
    color: #000000;
}

/*forms steps*/

.image-preview-container {
    width: 100%;
    margin: 0 auto;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1rem;
    border-radius: 10px;
}

.image-preview-container img {
    width: 100%;
    display: none;
    margin-bottom: 10px;
}

.image-preview-container input {
    display: none;
}

.image-preview-container label {
    display: block;
    width: 45%;
    height: auto;
    margin-left: 25%;
    text-align: center;
    background: #0064bd;
    color: #fff;
    font-size: 12px;
    text-transform: Uppercase;
    font-weight: 400;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.modal-head-title-ps {
    background-color: #323a45;
    font-weight: bolder;
    color: aliceblue;
}

.modal-head-title-rc {
    background-color: #3f6184;
    font-weight: bolder;
    color: aliceblue;
}

.modal-head-title-ll {
    background-color: #778899;
    font-weight: bolder;
    color: aliceblue;
}

.modal-head-title-bu {
    background-color: #5faeb6;
    font-weight: bolder;
    color: aliceblue;
}

.cd1 {
    background-color: #19405b;
}

.cd1text {
    color: #19405b;
}

.cd2 {
    background-color: #3f6184;
}

.cd3 {
    background-color: #778899;
}

.cd4 {
    background-color: #5faeb6;
}

.cd5 {
    background-color: #FF6200;
}

.cd2-btn {
    background-color: #3f6184;
    color: #fff;
    transition: background-color 0.3s;
    font-weight: 100;
    border: 1px solid #3f6184;
    border-radius: 0 4px 4px 0;

}

.cd2-btn:hover {
    background-color: #3f6184;
    color: lightgreen;
    transition: 0.5s;
    box-shadow: 0 0 0 0.25rem rgba(39, 156, 136, 0.25);
}

.cd2-btn:focus,
.cd2-btn:active {
    background-color: #19405b;
    transition: none;
}

search_item {
    color: darkblue;
}

ul.pagination .page-link {
    border: none;
    color: #3f6184;
    font-size: 12px;
}

.accordion-button.collapsed {}

.accordion-button:focus {
    z-index: 3;
    color: aliceblue;
    background-color: #5faeb6;
    outline: 0 !important;
    /* I changed the color on this line */
    /* If you do not want any color, just delete */
    box-shadow: 0 0 0 0.25rem rgba(39, 156, 136, 0.25);
}

.gold {
    background: radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #9f7928 30%, #8A6E2F 40%,
            transparent 80%),
        radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #5d4a1f 62.5%, #5d4a1f 100%);
}

ul.timeline {
    list-style-type: none;
    position: relative;
}

ul.timeline:before {
    content: ' ';
    background: #d4d9df;
    display: inline-block;
    position: absolute;
    left: 29px;
    width: 2px;
    height: 100%;
    z-index: 400;
}

ul.timeline > li {
    margin: 20px 0;
    padding-left: 20px;
}

ul.timeline > li:before {
    content: ' ';
    background: white;
    display: inline-block;
    position: absolute;
    border-radius: 50%;
    border: 3px solid #22c0e8;
    left: 20px;
    width: 20px;
    height: 20px;
    z-index: 400;
}
