#content_bottom {
    width: 100%;
    float: left;
    min-height: 700px;
}
#theApp {
    width: 100%;
}
#uploadDrop {
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px dashed #cccccc;
    border-radius: var(--whiskey-radius-large);
    padding: 24px;
    box-sizing: border-box;
    text-align: center;
    min-height: 250px;
    padding-top: 50px;
    font-size: 14px;
    width: 100%;
}
.uploadDropWrap {
    width: 100%;
}
#uploadDrop .dropboxTitle {
    font-size: 15px;
    font-weight: 700;
    display: block;
    margin: 1.33em;
}
#uploadDrop.floatDrop {
    position: absolute;
    z-index: 9;
    bottom: 60px;
    width: 96%;
    margin: 2%;
    min-height: 225px;
}
.uploadDropWrap--popup {
    display: block !important;
    position: fixed;
    width: 92%;
    height: 92%;
    top: 4%;
    left: 4%;
    z-index: 99999;
}
.uploadDropWrap--popup #uploadDrop {
    position: fixed;
    z-index: 99999;
    top: 15vh;
    width: 70%;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 70vh;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.5);
    padding-top: 25vh;
    backdrop-filter: blur(12px);
    border: none;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.15);
}
.uploadDropWrap--popup #uploadDrop button {
    display: none;
}
.uploadDropWrap--popup #uploadDrop.highlight {
    border: 3px solid #2ce5a1;
}
.uploadDropWrap--popup #uploadDrop h4 {
    color: #666;
    font-size: 20px;
}
#uploadDrop button {
    font-family: inherit;
    background: var(--whiskey-accent);
    border-radius: 48px;
    border: none;
    padding: 12px 28px;
    font-weight: 400;
    color: #ffffff;
    outline: none;
    margin: 16px 0;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.76, 0, 0.24, 1);
}
#uploadDrop button:hover {
    filter: brightness(1.15);
    transform: scale(1.1);
}
#uploadDrop button svg {
    vertical-align: bottom;
}
#uploadDrop.highlight {
    border-color: #2ce5a1;
}
.control_file_upload_field,
.form_file_upload_field {
    display: none;
}
#theFiles {
    border-radius: 8px;
    box-sizing: border-box;
    min-height: 250px;
    margin-top: 20px;
    font-size: 14px;
    display: none;
}
#fileList {
    width: 100%;
    float: left;
    border: 1px solid #eee;
    margin-top: 10px;
    border-radius: 5px;
    min-height: 250px;
    box-sizing: border-box;
}
#fileControls {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 1em;
}
.file_controls {
    display: flex;
    align-items: center;
    gap: 1em;
}
#progressbar {
    width: 100%;
    float: left;
    height: 7px;
    background: #eee;
    border-radius: 3px 3px 0 0;
    overflow: hidden;
}
#progressbar span {
    width: 0%;
    height: 7px;
    display: block;
    position: relative;
    background: var(--whiskey-accent);
    background: linear-gradient(
        to right,
        var(--whiskey-accent) 0%,
        #3ee899 100%
    );
}
#fileList ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
#fileList ul li {
    padding: 15px;
    float: left;
    width: 100%;
    box-sizing: border-box;
    border-bottom: 1px solid #eee;
}
#fileList ul li img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    vertical-align: bottom;
}
#fileList ul li .img_wrapper {
    float: left;
    width: 60px;
    height: 40px;
    margin-right: 20px;
    background: #eee;
    border: 1px solid #eee;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}
#fileList ul li .img_wrapper svg {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    font-size: 20px;
    margin-top: 7px;
    padding: 3px;
    border-radius: 50%;
    cursor: pointer;
}
#fileList ul li .img_wrapper svg path {
    filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.4));
}
#fileList ul li.file_converted .img_wrapper {
    cursor: pointer;
}
#fileList ul li:last-child {
    border-bottom: none;
}
.file_controls button {
    display: flex;
    align-items: center;
    gap: 0.5em;

    font-family: inherit;
    font-weight: 600;
    font-size: 16px;

    background: 0 0;
    border: none;
    outline: none;
    cursor: pointer;
    color: var(--whiskey-accent);
    transition: all 0.14s linear;

    white-space: nowrap;
}
.file_controls button svg {
    height: 32px;
}
.file_controls button i {
    font-style: normal;
}
.file_controls button:hover {
    color: #ffa07a;
}

.fileContent {
    float: left;
}
.fileContent > span {
    display: block;
}
.fileTitle {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
    color: #838690;
    font-weight: 600;
    font-size: 13px;
}
.fileSize {
    font-size: 12px;
    margin-top: 3px;
    color: #999;
}
.fileSize strong {
    color: #14ce8a;
    font-weight: 600;
}
.fileNewSize {
    float: right;
    font-weight: 700;
    color: #b8bbc3;
    font-size: 20px;
}
.fileNewDownload {
    float: right;
    margin-left: 15px;
    font-size: 18px;
    padding: 4px 8px;
    cursor: pointer;
    width: 16px;
    border-radius: 50%;
    transition: all 0.15s linear;
}
.fileNewDownload:hover svg path {
    fill: #000000;
}
.file_download {
    display: none;
}
.file_download button {
    color: #fff;
    border: none;
    padding: 6px 15px;
    font-size: 13px;
    cursor: pointer;
    outline: none;
    background: #ffa07a;
    border-radius: 15px;
    opacity: 0.5;
    pointer-events: none;
    transition: all 0.12s linear;
}
.file_download[data-compressed="100"] button {
    opacity: 1;
    pointer-events: initial;
}
.file_download[data-compressed="100"] button:hover {
    transform: scale(1.05);
}
.addedFiles .file_download {
    display: block;
}
.file_done_icon {
    position: absolute;
    margin-top: -7px;
    margin-left: -7px;
    display: block;
    z-index: 2;
}
#fileList_footer {
    width: 100%;
    padding: 20px 15px;
    float: left;
    box-sizing: border-box;
    border: 1px solid #eee;
    border-radius: 0 0 4px 4px;
    border-top: 0;
    margin-top: -4px;
    padding-top: 25px;
}
.fileList_footer__beforeAfter {
    float: left;
}
.fileList_footer__totalSaving {
    float: right;
    font-weight: 700;
}
.fileList_footer__totalSaving span {
    color: #28d696;
}
#compare {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.5);
    height: 100vh;
    z-index: -5;
    backdrop-filter: blur(12px);
    transition: all 0.12s linear;
    visibility: hidden;
    opacity: 0;
}
#compare.compare--show {
    z-index: 9999;
    visibility: visible !important;
    opacity: 1;
}
.compare_close {
    position: fixed;
    z-index: 9999;
    padding: 20px;
    font-size: 20px;
    right: 20px;
    cursor: pointer;
    transition: all 0.12s linear;
}
.compare_close:hover {
    transform: scale(1.3) rotate(90deg);
}
.compare__inner {
    width: 70%;
    margin: 0 auto;
    transform: translateY(-50%);
    top: 50%;
    background: #eee;
    position: relative;
    overflow: hidden;
    max-height: 90vh;
    box-shadow: 0 0 40px rgb(0 0 0/13%);
}
.compare--portrait .compare__inner {
    width: 500px;
}
.compare--imageHeight .compare__inner {
    min-height: unset;
}
#compare img {
    max-width: 100%;
    vertical-align: bottom;
}
.compare__backdrop {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
}
.before_image {
    position: absolute;
    top: 0;
    z-index: 99999;
    width: 50%;
    height: 100%;
    overflow: hidden;
    box-shadow: 0 0 10px rgb(0 0 0/12%);
    border-right: 4px solid #576ec7;
    background: #eee;
}
.before_image img,
.after_image img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    object-position: top left;
}
.after_image:after,
.before_image:after {
    content: attr(data-size);
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    z-index: 9;
    display: block;
    top: 20px;
    left: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 20px;
    color: #fff;
    border-radius: 4px 4px;
    min-width: 120px;
    text-align: center;
}
.after_image:after {
    left: auto;
    right: 20px;
}
#compare input[type="range"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    position: absolute;
    z-index: 99999999;
    top: 50%;
    left: -10px;
    background-color: transparent;
    width: calc(100% + 20px);
}
#compare input[type="range"]:focus {
    outline: none;
}
#compare input[type="range"]:active {
    outline: none;
}
#compare input[type="range"]::-moz-range-track {
    -moz-appearance: none;
    height: 15px;
    width: 98%;
    background-color: transparent;
    position: relative;
    outline: none;
}
#compare input[type="range"]::active {
    border: none;
    outline: none;
}
#compare input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: #576ec7;
    border-radius: 50%;
}
#compare input[type="range"]::-moz-range-thumb {
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    background: #576ec7;
    border-radius: 50%;
}
#compare input[type="range"]:focus::-webkit-slider-thumb {
    background: #899ef3;
}
#compare input[type="range"]:focus::-moz-range-thumb {
    background: #899ef3;
}
#contact_modal {
    width: 500px;
    position: fixed;
    top: 0;
    right: -300px;
    height: 100%;
    background: #fff;
    z-index: -1;
    padding: 20px;
    box-sizing: border-box;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.12);
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s linear;
}
#contact_modal iframe {
    margin-top: 70px;
}
#contact_modal.contact_modal--show {
    right: 0;
    opacity: 1;
    visibility: visible;
    z-index: 99999;
}
#compress_settings {
    width: 240px;
    font-size: 14px;
    padding: 20px;
    padding-top: 40px;
    box-sizing: border-box;
    font-weight: 600;
    position: absolute;
    z-index: 999;
    background-color: #161616;
    filter: drop-shadow(0 0 12px rgba(0 0 0 / 20%));
    margin-left: 110px;
    display: none;
}
#compress_settings #close_settings {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: #999;
    padding: 0;
    width: 24px;
    height: 24px;
    line-height: 1;
    transition: color 0.2s;
}
#compress_settings #close_settings:hover {
    color: #333;
}
.show_settings #compress_settings {
    display: block;
}
.show_settings #settings_btn {
    box-shadow: 0 -4px 7px rgba(0, 0, 0, 0.12);
}
#compress_settings > div {
    padding: 7px 0;
}
#compress_settings label {
    display: block;
    margin-bottom: 5px;
    font-size: 11px;
    text-transform: uppercase;
}
#compress_settings input {
    width: 100%;
}
#compress_settings input[type="number"],
#compress_settings input[type="text"] {
    padding: 5px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 4px;
}
#compress_settings input[type="number"]:focus,
#compress_settings input[type="text"]:focus {
    box-shadow: none;
    outline: none;
    border-color: #1f93bf;
}
.setting_image_quality__val {
    display: block;
    float: right;
    color: #2098c3;
}
#compress_settings .switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
}
#recompress {
    background: #eee;
    border-radius: 15px;
    border: none;
    padding: 8px 22px;
    font-weight: 700;
    color: #777;
    outline: none;
    margin-top: 10px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.12s linear;
    width: 100%;
    cursor: not-allowed;
}
#recompress.recompress--show {
    background: #1f94bf;
    background: linear-gradient(to right, #218abb 0%, #28b4e0 100%);
    box-shadow: 0 0 15px #299ce494;
    color: #fff;
    cursor: pointer;
}
#compress_settings .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
#compress_settings .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
}
#compress_settings .slider:before {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    left: 4px;
    bottom: 4px;
    background-color: #fff;
    transition: 0.4s;
}
#compress_settings input[type="checkbox"]:checked + .slider {
    background-color: #2196f3;
}
#compress_settings input[type="checkbox"]:focus + .slider {
    box-shadow: 0 0 1px #2196f3;
}
#compress_settings input[type="checkbox"]:checked + .slider:before {
    transform: translateX(20px);
}
#compress_settings .slider.round {
    border-radius: 34px;
}
#compress_settings .slider.round:before {
    border-radius: 50%;
}
section a {
    color: #ce3678;
    text-decoration: underline;
}
.content_text_wrap {
    line-height: 1.9em;
    font-size: 15px;
}
.content_text_wrap h2 {
    color: #474e71;
    margin-bottom: 40px;
}
.content_text_wrap h2:after {
    content: "";
    width: 60px;
    height: 3px;
    display: block;
    background: #d183a5;
    margin: 0 auto;
    margin-top: 20px;
}
section img {
    max-width: 100%;
}

.compressor-stats .wp-block-column {
    background-color: #f5faff;
    padding: 48px;
    border-radius: 8px 0 0 8px;

    box-shadow: 0 10px 20px rgb(0 0 0 / 5%);
    transition: all 300ms cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
}
.compressor-stats .wp-block-column:hover {
    transform: scale(1.04);
    box-shadow: 0 10px 20px rgb(0 0 0 / 10%);
    z-index: 1;
}
.compressor-stats .wp-block-column:not(:first-child) {
    margin-left: 0;
    background-color: var(--whiskey-accent);
    color: #ffffff;
    border-radius: 0 8px 8px 0;
}
.compressor-stats .compressor-stats-element {
    font-size: 42px;
    font-weight: 700;
    color: var(--whiskey-accent);
}
.compressor-stats .wp-block-column:not(:first-child) .compressor-stats-element {
    color: #ffffff;
}
.compressor-stats .compressor-stats-element .has-large-font-size {
    font-size: 1.8em;
    font-weight: 700;
    letter-spacing: -0.018em;
}

@media screen and (max-width: 1261px) {
    #theFiles {
        margin-top: 30px;
    }
}
@media screen and (max-width: 970px) {
    .info_columns {
        padding: 30px;
        margin-bottom: 0;
    }
    .info_columns_cols .section_first,
    .info_columns_cols .section_second {
        width: 100%;
    }
    #compress_settings {
        margin-left: 55px;
    }
}
@media screen and (max-width: 570px) {
    .section_second {
        padding-left: 0;
    }
    .woofy_speech_bubble {
        font-size: 24px;
    }
    #compare img {
        max-width: unset;
        height: 400px;
    }
    .compare--portrait .compare__inner {
        width: 300px;
    }
    .fileContent {
        float: left;
        width: 170px;
    }
    .fileNewSize {
        display: none;
    }
    .fileNewDownload {
        margin-left: 0;
    }
    .file_controls button {
        margin-right: 0;
        font-size: 12px;
    }
    .fileList_footer__beforeAfter {
        width: 100%;
        float: left;
        text-align: center;
        padding-bottom: 10px;
        border-bottom: 1px solid #ddd;
        margin-bottom: 15px;
    }
    #fileList_footer {
        text-align: center;
    }
    .fileList_footer__totalSaving {
        width: 100%;
        float: left;
    }
    .fileTitle {
        max-width: 115px;
    }
    .fileContent {
        width: 140px;
    }
    #fileList ul li .img_wrapper {
        margin-right: 10px;
    }
    #compress_settings {
        margin-left: 29px;
    }
    .file_download button {
        font-size: 12px;
    }
}

/**
 * WebP Converter
 */
.whiskey-compressor-webp .form_file_upload_field {
    display: none;
}

/* WebP Compressor - Match JPEG/PNG styling */
#theApp-webp {
    width: 100%;
}

#uploadDrop-webp {
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px dashed #cccccc;
    border-radius: var(--whiskey-radius-large);
    padding: 24px;
    box-sizing: border-box;
    text-align: center;
    min-height: 250px;
    padding-top: 50px;
    font-size: 14px;
    width: 100%;
}

#uploadDrop-webp .dropboxTitle {
    font-size: 15px;
    font-weight: 700;
    display: block;
    margin: 1.33em;
}

.uploadDropWrap--popup #uploadDrop-webp {
    position: fixed;
    z-index: 99999;
    top: 15vh;
    width: 70%;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 70vh;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.5);
    padding-top: 25vh;
    backdrop-filter: blur(12px);
    border: none;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.15);
}

.uploadDropWrap--popup #uploadDrop-webp button {
    display: none;
}

.uploadDropWrap--popup #uploadDrop-webp.highlight {
    border: 3px solid #2ce5a1;
}

#uploadDrop-webp button {
    font-family: inherit;
    background: var(--whiskey-accent);
    border-radius: 48px;
    border: none;
    padding: 12px 28px;
    font-weight: 400;
    color: #ffffff;
    outline: none;
    margin: 16px 0;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.76, 0, 0.24, 1);
}

#uploadDrop-webp button:hover {
    filter: brightness(1.15);
    transform: scale(1.1);
}

#uploadDrop-webp button svg {
    vertical-align: bottom;
}

#uploadDrop-webp.highlight {
    border-color: #2ce5a1;
}

#theFiles-webp {
    border-radius: 8px;
    box-sizing: border-box;
    min-height: 250px;
    margin-top: 20px;
    font-size: 14px;
    display: none;
}

#fileList-webp {
    width: 100%;
    float: left;
    border: 1px solid #eee;
    margin-top: 10px;
    border-radius: 5px;
    min-height: 250px;
    box-sizing: border-box;
}

#fileControls-webp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1em;
}

#progressbar-webp {
    width: 100%;
    float: left;
    height: 7px;
    background: #eee;
    border-radius: 3px 3px 0 0;
    overflow: hidden;
}

#progressbar-webp span {
    width: 0%;
    height: 7px;
    display: block;
    position: relative;
    background: var(--whiskey-accent);
    background: linear-gradient(
        to right,
        var(--whiskey-accent) 0%,
        #3ee899 100%
    );
}

#fileList-webp ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

#fileList-webp ul li {
    padding: 15px;
    float: left;
    width: 100%;
    box-sizing: border-box;
    border-bottom: 1px solid #eee;
}

#fileList-webp ul li img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    vertical-align: bottom;
}

#fileList-webp ul li .img_wrapper {
    float: left;
    width: 60px;
    height: 40px;
    margin-right: 20px;
    background: #eee;
    border: 1px solid #eee;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

#fileList-webp ul li.file_converted .img_wrapper {
    cursor: pointer;
}

#fileList-webp ul li:last-child {
    border-bottom: none;
}

#fileList_footer-webp {
    width: 100%;
    padding: 20px 15px;
    float: left;
    box-sizing: border-box;
    border: 1px solid #eee;
    border-radius: 0 0 4px 4px;
    border-top: 0;
    margin-top: -4px;
    padding-top: 25px;
}

#fileList_footer-webp .fileList_footer__beforeAfter {
    float: left;
}

#fileList_footer-webp .fileList_footer__totalSaving {
    float: right;
    font-weight: 700;
}

#fileList_footer-webp .fileList_footer__totalSaving span {
    color: #28d696;
}

.whiskey-compressor-webp .file_controls button {
    display: flex;
    align-items: center;
    gap: 0.5em;
    font-family: inherit;
    font-weight: 600;
    font-size: 16px;
    background: 0 0;
    border: none;
    outline: none;
    cursor: pointer;
    color: var(--whiskey-accent);
    transition: all 0.14s linear;
    white-space: nowrap;
}

.whiskey-compressor-webp .file_controls button svg {
    height: 32px;
}

.whiskey-compressor-webp .file_controls button i {
    font-style: normal;
}

.whiskey-compressor-webp .file_controls button:hover {
    color: #ffa07a;
}

.whiskey-compressor-webp .fileContent {
    float: left;
}

.whiskey-compressor-webp .fileContent > span {
    display: block;
}

.whiskey-compressor-webp .fileTitle {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
    color: #838690;
    font-weight: 600;
    font-size: 13px;
}

.whiskey-compressor-webp .fileSize {
    font-size: 12px;
    margin-top: 3px;
    color: #999;
}

.whiskey-compressor-webp .fileSize strong {
    color: #14ce8a;
    font-weight: 600;
}

.whiskey-compressor-webp .fileNewSize {
    float: right;
    font-weight: 700;
    color: #b8bbc3;
    font-size: 20px;
}

.whiskey-compressor-webp .fileNewDownload {
    float: right;
    margin-left: 15px;
    font-size: 18px;
    padding: 4px 8px;
    cursor: pointer;
    width: 16px;
    border-radius: 50%;
    transition: all 0.15s linear;
}

.whiskey-compressor-webp .fileNewDownload:hover svg path {
    fill: #000000;
}

.whiskey-compressor-webp .file_download {
    display: none;
}

.whiskey-compressor-webp .file_download button {
    color: #fff;
    border: none;
    padding: 6px 15px;
    font-size: 13px;
    cursor: pointer;
    outline: none;
    background: #ffa07a;
    border-radius: 15px;
    opacity: 0.5;
    pointer-events: none;
    transition: all 0.12s linear;
}

.whiskey-compressor-webp .file_download[data-compressed="100"] button {
    opacity: 1;
    pointer-events: initial;
}

.whiskey-compressor-webp .file_download[data-compressed="100"] button:hover {
    transform: scale(1.05);
}

.whiskey-compressor-webp .addedFiles .file_download {
    display: block;
}

.whiskey-compressor-webp .file_done_icon {
    position: absolute;
    margin-top: -7px;
    margin-left: -7px;
    display: block;
    z-index: 2;
}

/* WebP Settings Panel */
#compress_settings-webp {
    width: 240px;
    font-size: 14px;
    padding: 20px;
    padding-top: 40px;
    box-sizing: border-box;
    font-weight: 600;
    position: absolute;
    z-index: 999;
    background-color: #161616;
    filter: drop-shadow(0 0 12px rgba(0 0 0 / 20%));
    margin-left: 110px;
    display: none;
}

#compress_settings-webp #close_settings-webp {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: #999;
    padding: 0;
    width: 24px;
    height: 24px;
    line-height: 1;
    transition: color 0.2s;
}

#compress_settings-webp #close_settings-webp:hover {
    color: #333;
}

#fileControls-webp.show_settings #compress_settings-webp {
    display: block;
}

#fileControls-webp.show_settings #settings_btn-webp {
    box-shadow: 0 -4px 7px rgba(0, 0, 0, 0.12);
}

#compress_settings-webp > div {
    padding: 7px 0;
}

#compress_settings-webp label {
    display: block;
    margin-bottom: 5px;
    font-size: 11px;
    text-transform: uppercase;
}

#compress_settings-webp input {
    width: 100%;
}

#compress_settings-webp input[type="range"] {
    padding: 5px 0;
}

.setting_webp_quality__val {
    display: block;
    float: right;
    color: #2098c3;
}
