#wrapper_cut {
    position: relative;
    width: 100%;
    padding: 50px 10px 20px 10px;
    border-radius: 10px;
}

#container_cut {
    position: relative;
    width: 100%;
    height: 100px;
}

input[type="range"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    outline: none;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    background-color: transparent;
    pointer-events: none;
}

.slider-track {
    width: 100%;
    height: 10px;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    border-radius: 5px;
    background-color: #1f8389;
}

input[type="range"]::-webkit-slider-runnable-track {
    -webkit-appearance: none;
    height: 5px;
}

input[type="range"]::-moz-range-track {
    -moz-appearance: none;
    height: 5px;
}

input[type="range"]::-ms-track {
    appearance: none;
    height: 5px;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 1.7em;
    width: 1.7em;
    background-color: white;
    cursor: pointer;
    margin-top: -9px;
    pointer-events: auto;
    border-radius: 50%;
    color: #ffffff;
    border: 1px solid gray;
}

input[type="range"]::-moz-range-thumb {
    appearance: none;
    height: 1.7em;
    width: 1.7em;
    cursor: pointer;
    border-radius: 50%;
    background-color: white;
    pointer-events: auto;
    color: #ffffff;
}

input[type="range"]::-ms-thumb {
    appearance: none;
    height: 1.7em;
    width: 1.7em;
    cursor: pointer;
    border-radius: 50%;
    background-color: white;
    pointer-events: auto;
    color: #ffffff;
}

input[type="range"]:active::-webkit-slider-thumb {
    background-color: #ffffff;
    border: 3px solid #1f8389;
}

#values_cut {
    background-color: #1f8389;
    width: 70%;
    position: relative;
    margin: auto;
    padding: 10px 0;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
    font-size: 25px;
    color: #ffffff;
}

#values_cut:before {
    content: "";
    position: absolute;
    height: 0;
    width: 0;
    border-top: 15px solid #1f8389;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    margin: auto;
    bottom: -14px;
    left: 0;
    right: 0;
}

#total_time {
    display: inline-block;
    box-sizing: unset;
}

input[type="time"],
#wrapper_cut,
#values_cut {
    caret-color: transparent;
}

#button_start, #button_end {
    font-size: 34px;
    transition-duration: 0.4s;
    cursor: pointer;
    margin-top: -6px; 
}

#button_start:hover, #button_end:hover {
    color: black;
    transition-duration: 0.4s;
}

#button_start {
    margin-right: 15px;
}

#button_end {
    margin-left: 15px;
}

#cut_video {
    display: block;
    width: 60%;
    margin: auto;
}

.time_input {
    display: flex;
    flex-direction: column-reverse;
}

.time_input label {
    font-size: 20px;
}

#time_for_cut {
    display: flex;
    flex-direction: row;
    justify-content: center;
}
