table tbody>tr:nth-child(odd)>th {
  background-color: #ffffff;
  border-width: 0px;
}

table tbody>tr:nth-child(odd)>td {
  background-color: #ffffff;
  border-width: 0px;
}

.elementor-kit-69 h4 {
  display: none;
}

.track_form_td.submit-track {
  border-width: 0px;
}

.elementor-kit-985 input:not([type="button"]):not([type="submit"]) {
  padding: 12px;
  border-width: 1px;
}

table tbody tr:hover>td {
  border-width: 0px;
  border-style: solid;
  border-color: #c24040;
  background-color: #ffffff;
}

#wpcargo-track-table.track_form_table {
  border-width: 0px;
  border-color: #f51313;
  border-style: solid;
}

table.track_form_table tr td {
  border-width: 0px;
}

.elementor-element.elementor-element-78df2460.elementor-widget.elementor-widget-text-editor {
  margin: auto;
}

.elementor-339 .elementor-element.elementor-element-78df2460 > .elementor-widget-container {
  margin-left: 75px;
  margin-right: 75px;
}

table.track_form_table tr td input[type="text"] {
  margin-left: 70px;
  margin-top: -3px;
}

.elementor-kit-985 h4 {
  display: none;
}

#progressContainer {
        width: 80%;
        height: 40px;
        background: linear-gradient(135deg, #ddd 25%, #ccc 25%, #ccc 50%, #ddd 50%, #ddd 75%, #ccc 75%, #ccc 100%);
        background-size: 20px 20px;
        border-radius: 5px;
        position: relative;
        margin-bottom: 20px;
        overflow: hidden;
        animation: moveBackground 1s linear infinite;
    }

    @keyframes moveBackground {
        0% {
            background-position: 0 0;
        }
        100% {
            background-position: 20px 20px;
        }
    }

    #progressBar {
        width: 0%;
        height: 100%;
        background: linear-gradient(135deg, #4caf50 25%, #3e8e41 25%, #3e8e41 50%, #4caf50 50%, #4caf50 75%, #3e8e41 75%, #3e8e41 100%);
        background-size: 20px 20px;
        border-radius: 5px;
        transition: width 0.5s ease-in-out;
        animation: moveForeground 1s linear infinite;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    @keyframes moveForeground {
        0% {
            background-position: 0 0;
        }
        100% {
            background-position: 20px 20px;
        }
    }

    #progressText {
        font-weight: bold;
        color: #000;
        z-index: 1;
    }