.wcf-custom-font {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 30px;
}

  .wcf-custom-font .section-group {
    border: 1px solid #E1E4EA;
    border-radius: 6px;
    padding: 30px;
  }

  .wcf-custom-font .font-group {
    display: grid;
    grid-template-columns: 1fr 3fr;
    align-items: center;
    gap: 50px;
  }

  .wcf-custom-font .font-group h3 {
      font-size: 14px;
      font-weight: 400;
    }

  .wcf-custom-font .font-group select {
      width: 200px;
      border: 1px solid #E1E4EA;
      border-radius: 4px
    }

  .wcf-custom-font .font-group .input-upload {
      display: flex;
      align-items: flex-start;
      gap: 8px;


    }

  .wcf-custom-font .font-group .input-upload input {
        width: 100%;
        height: 30px;
        border: 1px solid #E1E4EA;
        background-color: white;
        padding: 4px 8px;
        border-radius: 4px;
      }

  .wcf-custom-font .font-group .input-upload .button-upload-remove {
        display: flex;
        align-items: center;
        gap: 10px;
      }

  .wcf-custom-font .font-group .input-upload .button-upload-remove button {
          height: 100%;
          cursor: pointer;
          padding: 6px 12px;
          border-radius: 4px;
        }

  .wcf-custom-font .font-group .input-upload .button-upload-remove .upload {
          background-color: #fc6b4a;
          border: none;
          color: white;
        }

  .wcf-custom-font .font-group .input-upload .button-upload-remove .remove {
          background-color: white;
          border: 1px solid #E1E4EA;
          color: black;
        }

  .wcf-custom-font .create-new-font {
    margin-top: 20px;
  }

.wcf_switch-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wcf_switch-toggle p {
    font-size: 16px;
    font-weight: 500;
  }

.wcf_switch-toggle .switch {
    position: relative;
    display: inline-block;
    width: 35px;
    height: 20px;
  }

.wcf_switch-toggle .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }

.wcf_switch-toggle .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
  }

.wcf_switch-toggle .slider:before {
    position: absolute;
    content: "";
    height: 15px;
    width: 15px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
  }

.wcf_switch-toggle input:checked+.slider {
    background-color: #2196F3;
  }

.wcf_switch-toggle input:focus+.slider {
    box-shadow: 0 0 1px #2196F3;
  }

.wcf_switch-toggle input:checked+.slider:before {
    transform: translateX(14px);
  }

/* Rounded sliders */

.wcf_switch-toggle .slider.round {
    border-radius: 34px;
  }

.wcf_switch-toggle .slider.round:before {
    border-radius: 50%;
  }
