/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/

.d_flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.f_wrap {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.f_wrap_reverse {
    -webkit-flex-wrap: wrap-reverse;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
}

.f_no_wrap {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.f_row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
}

.f_direction_column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.j_content_start {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.j_content_end {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.j_content_center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.j_content_between {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.a_items_start {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.a_items_end {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.a_items_center {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.content-wrap .container.custom h3 {
    color: #000;
    margin-bottom: 0;
}
.content-wrap .container.custom .form-widget {
    margin-top: 30px;
}
.form_track_input {
    position: relative;
    height: 50px;
}
.form_track_input input {
    background: #ebebeb;
    border-color: #ebebeb;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    padding-left: 20px;
    padding-right: 100px;
    height: 100%;
    width: 100%;
}
.form_track_submit {
    background: none;
    background-image: url(../images/icon_form_track_remove.svg);
    background-position: center;
    background-repeat: no-repeat;
    border: none;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    height: 20px;
    width: 20px;
    transition: 0.25s;
}
.form_track_submit:hover {
    opacity: 0.7;
}
.form_track_remove {
    background: none;
    background-image: url(../images/icon_form_track_submit.svg);
    background-position: center;
    background-repeat: no-repeat;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: 79px;
    transform: translateY(-50%);
    height: 18px;
    width: 17px;
}
.form_track_remove:hover {
    opacity: 0.7;
}
.form_track_input:after {
    background: rgba(0, 0, 0, 0.5);
    content: '';
    position: absolute;
    right: 58px;
    top: 50%;
    transform: translateY(-50%);
    height: 25px;
    width: 2px;
    pointer-events: none;
}

.track_table_wrapper {
    position: relative;
    transition: 0.25s;
}
.track_table_wrapper.completed {
    margin-top: 50px;
}
.track_table_wrapper.process {
    padding: 10px;
    margin-top: 50px;
    overflow: hidden;
    height: 150px;
}
.track_table_wrapper.process:after {
    background-color: rgba(221, 221, 221, 50%);
    background-image: url(../images/loader.svg);
    background-size: 128px;
    background-repeat: no-repeat;
    background-position: center;
    backdrop-filter: blur(5px);
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.track_table {
    margin-top: 30px;
}
.track_table table {
    width: 100%;
}
.track_table table td {
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
    vertical-align: top;
}
.track_table table tr:nth-child(1) td {
    background: #f3f3f3;
    backdrop-filter: blur(4px);
    padding: 8px 20px;
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    color: #000;
}
.track_table table tr:not(:nth-child(1)) td {
    padding-top: 10px;
}
.track_table table tr td:nth-child(3),
.track_table table tr td:nth-child(4),
.track_table table tr td:nth-child(5),
.track_table table tr td:nth-child(6) {
    text-align: left;
}
.track_table table tr:not(:nth-child(1)) td .td_value {
    font-weight: 600;
    font-size: 18px;
    color: #000;
    padding: 8px 0;
}
.td_value + .td_date {
    margin-top: 5px;
}
.td_date {
    margin-top: 20px;
    font-weight: 700;
    font-size: 18px;
    color: #000;
}
.td_date_title:after {
    content: ':';
}
.td_date_value {
    font-weight: 600;
}

/*-- SLIDER ACTIONS --*/

.slider_actions_wrapper {
    padding-top: 50px;
}
.slider_actions_form {
    display: none;
    max-width: 980px;
    margin: 0 auto;
}
.slider_actions {
    max-width: 980px;
    margin: 0 auto;
}
.row.row_slider_actions {
    margin: 0 -5px -10px;
}
.row.row_slider_actions .col {
    padding: 0 5px;
    margin-bottom: 10px;
    width: calc(100% / 3);
}
.slider_action {
    background: #fff;
    box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.1);
    height: 80px;
    transition: 0.25s;
}
.slider_action_icon {
    font-size: 0;
    margin-right: 10px;
}
.slider_action_icon svg * {
    transition: 0.25s;
}
.slider_action_text {
    font-weight: 700;
    font-size: 13px;
    color: #000;
    transition: 0.25s;
}
.slider_action:hover {
    background: #de6262;
    box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.2);
}
.slider_action:hover .slider_action_icon svg * {
    fill: #fff;
}
.slider_action:hover .slider_action_text {
    color: #fff;
}

@media screen and (max-width: 1199px) {
    .track_table table td {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    .track_table table tr:nth-child(1) td,
    .track_table table tr:not(:nth-child(1)) td .td_value,
    .td_date {
        font-size: 14px;
    }
    .td_date {
        margin-top: 10px;
    }
}

@media screen and (max-width: 991px) {
    .track_table {
        white-space: nowrap;
        overflow: auto;
    }
    .track_table table {
        width: auto;
    }
    .track_table table td {
        padding-left: 5px;
        padding-right: 5px !important;
    }
}

@media screen and (max-width: 767px) {
    .slider_actions_wrapper {
        padding-top: 30px;
        margin-bottom: -60px;
    }
    .row.row_slider_actions .col {
        margin-bottom: 10px;
        order: 1;
        width: 100%;
    }
    .row.row_slider_actions .col:nth-child(2) {
        order: 0;
    }
    .slider_action {
        max-width: 280px;
        margin: 0 auto;
        height: 70px;
    }
}

@media screen and (max-width: 480px) {
    .form_track_input input {
        font-size: 11px;
        padding-left: 15px;
        padding-right: 30px;
    }
    .form_track_remove {
        display: none;
        right: 50px;
    }
    .form_track_submit {
        right: 10px;
    }
    .form_track_input:after {
        display: none;
        right: 38px;
    }
}