#ai_file_upload, #ai__file_uplaoder{
    display: none;
}
.ai_file_upload, .ai__file_uplaoder{
    background: rgb(246, 246, 246);
    border-radius: 8px;
    border: 1px dashed rgb(146, 147, 151);
    position: relative;
    cursor: pointer;
    display: table-cell;
}
.upload_area_logo{
    padding: 20px 0px;
}

.button-27, .ai_submit {
    padding: 14px 26px;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    border-radius: 30px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    background-color: rgb(124, 50, 255);
    letter-spacing: 1px;
    transition: all 0.1s ease 0s;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    text-decoration: none;
}

.button-27:hover, .ai_submit:hover {
  /* box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px; */
  transform: scale(1.05);
}
.ai_submit:hover, .ai_submit:focus{
    background-color: rgb(124, 50, 255);
}

.div_label_1, .div_label_2, .div_label_3{
    margin: 15px 0px;
}

.div_label_1 > .list, .div_label_2 > .list, .div_label_3 > .list{
    display: inline-block;
    -webkit-box-pack: center;
    place-content: center;
    font-weight: bold;
    border: 2px solid;
    /* border-radius: 50%; */
    width: 40px;
    height: 40px;
    font-size: 24px;
    text-align: center;
    vertical-align: middle;
    margin-right: 11px;
}
.div_label_1 > .info, .div_label_2 > .info, .div_label_3 > .info{
    display: inline-block;
    -webkit-box-pack: center;
    place-content: center;
    font-weight: 500;
    font-size: 24px;
    position: relative;
    top: 3px;
}

.dd_custom_select{
    padding: 0px;
    background-color: #fff;
    font-size: 24px;
    border: none;
    color: rgb(125, 51, 255);
    border-bottom: 2px dashed rgb(125, 51, 255);
}

.dd_custom_select > option{
    color: #000;
    font-size: 18px;
}

.dd_custom_select:focus{
    background-color: #fff;
    color: rgb(125, 51, 255);
    border-color: rgb(125, 51, 255);
}

.dd_custom_select:focus-visible{
    outline: none;
}

.ai_input_select > div{
    margin: 0px 5px;
    font-size: 24px;
    color: #717276;
    font-weight: 100;
}

#enhancements_select{
    width: 300px;
}
#width_tmp_select_1, #width_tmp_select_2{
    display: none;
    font-size: 24px;
}

.container_pod{
    margin-bottom: 60px;
    position: relative;
    display: block;
}

.ai_media_preview, .output_media_view_wrapper{
    width: 500px;
    margin: 20px 0px;
    height: 500px;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background: #000;
    display:none;
}

@media only screen and (max-width: 720px){
    .ai_media_preview, .output_media_view_wrapper{
        width: 100%;
    }
    .ai_range__label{
        font-size: small;
    }
}

.ai_media_preview > video, .output_media_view_wrapper > video{
    width: 100%;
    height: 100%;
}

video:focus-visible{
    outline: none !important;
}

.container_pod_c, .container_pod_o{
    display: none;
}

.dtools{
    margin-top: 25psx;
}

.ai_range {
    position: relative;
    background-color: #fff;
    width: 60%;
    height: 30px;
    transform: skew(30deg);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.ai_range:before {
    --width: calc(var(--p) * 1%);
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    /* background-color: #F3E600; */
    background-image: linear-gradient(to right, #8133E2, #E9347A);
    z-index: 0;
    -webkit-animation: load 0.5s forwards linear, glitch 2s infinite linear;
        animation: load 0.5s forwards linear, glitch 2s infinite linear;
}
.ai_range:after {
    counter-reset: progress var(--p);
    /* content: counter(progress) "%"; */
    color: #fff;
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%) skewX(-30deg);
    z-index: 1;
}
.ai_range__label {
    transform: skew(-30deg) translateY(-100%);
    line-height: 1.5;
    text-align: center;
    margin-bottom: 5px;
}

.container_pod_o > .loader{
    visibility: hidden;
}

#output_file{
    width: 100%;
    height: 100%;
}

.output_video_wrapper{
    width: 740px;
    height: 400px;

}

.container_pod_o > .output_preview{
    display: none;
    flex-direction: column;
    align-items: center;
    /* needs flex */
}

.container_pod_o > div{
    margin: 30px 0px;
}

.dtools .download, .dtools .restart{
    cursor: pointer;
}
  
@-webkit-keyframes load {
    to {
        width: var(--width);
    }
}

@keyframes load {
    to {
        width: var(--width);
    }
}
  

@media only screen and (max-width: 500px){
    #width_tmp_select_1, #width_tmp_select_2, .ai_input_select > div, .dd_custom_select > option, .dd_custom_select{
        font-size: 18px;
    }
    #enhancements_select {
        width: 230px;
    }
}