@font-face {
    font-family: 'Nunito';
    src: url('Nunito-Light.ttf');
}

* {
    box-sizing: border-box;
}




body {
      text-align: center;
      background-color: #FBFBFB;
      font-family: 'Nunito', Helvetica, Arial, sans-serif;
      font-weight: 100;
    }

    h2 {
      margin-bottom: 20px;
    }

    .section-title {
      font-weight: bold;
      font-size: 20px;
      margin: 20px 0 10px;
      color: #007bff;
      text-transform: uppercase;
      letter-spacing: 1.5px;
    }

    ul {
      list-style: none;
      padding: 0;
      width: 600px;
      margin: 0 auto 30px;
      min-height: 100px;
    }

    ul li {
      position: relative;
      margin: 8px 0;
      padding: 10px 40px 10px 10px;
      background: #ffffff;
      border: 1px solid #ccc;
      font-size: 16px;
      display: flex;
      align-items: center;
      gap: 12px;
      cursor: move;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      border-radius: 6px;
      transition: background-color 0.2s ease;
    }

    ul li:hover {
      background-color: #eef2f7;
    }

    ul li img {
      width: 32px;
      height: auto;
      border-radius: 3px;
    }

    .close-btn {
      position: absolute;
      right: 10px;
      top: 10px;
      color: #888;
      font-size: 18px;
      cursor: pointer;
      font-weight: bold;
      user-select: none;
    }

    .close-btn:hover {
      color: red;
    }


    button .icon {
      display: inline-block;
      transform: rotate(0deg);
      transition: transform 0.3s ease;
    }

    button:hover .icon {
      transform: rotate(180deg);
    }

    .fps-selector {
      margin-top: 15px;
      display: flex;
      justify-content: center;
      gap: 20px;
      font-size: 14px;
    }

    .fps-selector label {
      cursor: pointer;
      padding: 6px 12px;
      border: 1px solid #007bff;
      border-radius: 6px;
      color: #007bff;
      transition: all 0.2s ease;
      user-select: none;
    }

    .fps-selector input {
      display: none;
    }

    .fps-selector input:checked + span {
      background-color: #007bff;
      color: white;
      border-color: #007bff;
    }

    .fps-selector label:hover {
      background-color: #007bff10;
    }






#header {
    display: flex;
    align-items: center;
    margin-top: 18px;
}

#header img {
    height: 41px;
}

#header h1 {
    font-weight: 100;
    font-size: 30px;
    color: #666666;
    margin: 0 0 0 10px;
}

#header > a {
    display: inherit;
    text-decoration: none;
}

/* effect-shine */
#header > a:hover {
    -webkit-mask-image: linear-gradient(-75deg, rgb(0, 0, 0) 30%, rgba(0, 0, 0, 0.50) 50%, rgb(0, 0, 0) 70%);
    -webkit-mask-size: 200%;
    animation: shine 2s;
    animation-fill-mode: forwards;
}

@-webkit-keyframes shine {
    from { -webkit-mask-position: 150%; }
    to { -webkit-mask-position: -50%; }
}

#mid {
    margin: auto;
}

#content {
    display: grid;
    grid-gap: 0;
}

#info_bar {
    width: 250px;
    background-color: rgba(69, 139, 198, 0.15);
    display: none;
    padding: 8px;
}

#info_bar p {
    margin: 0;
}

#converter_settings {
    margin: 0 10px 10px 10px;
    max-width: 800px
}

.section_header {
    margin: 10px 0 2px 0;
    font-weight: normal;
    font-size: 25px;
}

.section_header > a {
    cursor: pointer;
}

.sub_header {
    font-size: 17px;
    margin: 2px;
}

button {
    cursor: pointer;
    border-radius: 4px;
    font-family: 'Nunito', Helvetica, Arial, sans-serif;
    font-weight: 100;
}

#restoreBtn{
    margin-top: 10px;
}

.btn_choice {
    border: 3px solid #000000;
    color: #000000;
    background: transparent;
    padding: 8px;
    margin-bottom: 2px;
    transition: border 0.3s;
}

.btn_choice_greyed {
    border: solid 3px #EEEEEE;
    color: lightgrey;
}

.btn_choice.btn_choice_greyed:hover {
    border: 3px solid #000000;
}

.info_btn {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAq0lEQVR4XnWQywrDIBBF82P+WPtXebiSbJKtq0jAtVAEwW0WIZ16p04aWjpwcbge5tU0Nfq+V13XteV9QDVX8i/Qrei5LAtt28ZCXuADf9dKxzzPhEgpsRDwKqwatCiiaZrIe09aazLGMOicAwi1qIh5xGAw50z7vtM4juyB+QFDCFzNWnt6DEpr0bquPMIwDKcnrXkZMWOMrAv0XqZufhf4C/ycR6JW/nvwF51vE+IcomqCAAAAAElFTkSuQmCC) -0px -0px no-repeat;
    height: 10px;
    width: 10px;
    overflow: hidden;
    margin-left: .25em;
    vertical-align: middle;
    display: inline-block;
}

.btn_main {
    width: 100%;
    background-color: #000000;
    border: 1px solid #000000;
    font-size: 15px;
    color: white;
    height: 38px;
    padding: 0 30px;
    text-align: center;
    box-sizing: border-box;
    letter-spacing: .1rem;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background-color 0.3s;
}

.btn_main:hover {
    background-color: #dda955;
}

.btn_search {
    background: transparent;
    border: 2px solid #000000;
    height: 27px;
    padding: 0 15px;
    transition: background 0.3s;
}

.btn_search:hover {
    background: #1c79c71a;
}

input, select {
    padding: 4px;
    border: 1px solid #000000;
    margin-left: 6px;
}

.expand {
    background: url(img/chevron-square-up.svg) no-repeat center;
    height: 30px;
    margin-bottom: -4px;
    margin-right: 6px;
    width: 30px;
    display: inline-block;
    transform: rotate(180deg);
    transition: transform 0.4s;
    cursor: pointer;
}

.note {
    font-size: 14px;
    font-style: italic;
    margin: 8px 0 0 0;
}

[id|=VALUE], [id|=COMMASPLIT] {
    margin-bottom: 2px;
}

.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none;
}

#common-issue-link {
    font-size: 12px;
    text-align: center;
    margin-bottom: 5px;
    display: none;
}

#common-issue-link a {
    text-decoration: none;
    color: #000000
}

#common-issue-link a:hover {
    color: #1c79c7;
}
