/* floating label */
* {
    margin: 0;
    padding: 0;
}
body{
    height: 100%;
    position: relative;
}
.has-float-label{
    position:relative
}
.has-float-label label{
    position:absolute;
    cursor:text;
    font-size:75%;
    opacity:1;
    -webkit-transition:all .2s;
    transition:all .2s;
    top:-.5em;
    left:12px;
    z-index:3;
    line-height:1;
    padding:0 1px
}
.has-float-label label::after{
    content:" ";
    display:block;
    position:absolute;
    background:#fff;
    height:2px;
    top:50%;
    left:-.2em;
    right:-.2em;
    z-index:-1
}
.has-float-label .form-control::-webkit-input-placeholder{
    opacity:1;
    -webkit-transition:all .2s;
    transition:all .2s
}
.has-float-label .form-control:placeholder-shown:not(:focus)::-webkit-input-placeholder{
    opacity:0
}
.has-float-label .form-control:placeholder-shown:not(:focus)+label{
    font-size: 100%;
    opacity: .5;
    top: 0.8em;
    font-weight: 400;
}
.input-group .has-float-label{
    display:table-cell
}
.input-group .has-float-label .form-control{
    border-radius:4px
}
.input-group .has-float-label:not(:last-child) .form-control{
    border-bottom-right-radius:0;
    border-top-right-radius:0
}
.input-group .has-float-label:not(:first-child) .form-control{
    border-bottom-left-radius:0;
    border-top-left-radius:0;
    margin-left:-1px
}

/* form-contro-custom */
.group-custom {
    width: 100%;
}
input.form-custom,.select.form-custom{
    border-radius: 0px !important;
}
select.form-custom {
    padding-left: 8px;
}
.form-custom {
    font-size: 14px;
    border-color: transparent !important;
    border-bottom: 1px solid#eaeaea !important;
    padding: 10px 15px;
}
.form-custom {
    -webkit-box-shadow: inset 0 0px 0px transparent !important;
    box-shadow: inset 0 0px 0px transparent !important;
}
.form-custom:focus {
    border-color: transparent !important;
    border-bottom: 1px solid#eaeaea !important;
    outline: 0;
    -webkit-box-shadow: inset 0 0px 0px transparent;
    box-shadow: inset 0 0px 0px transparent;
}
/* select2 */
.select2-container--default .select2-selection--single {
    border-color: transparent !important;
    border-bottom: 1px solid#eaeaea !important;
    border-radius: 0px !important;
    padding: 8px 20px 33px 5px !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow{
    top: 12px !important;
}

/* margin */
.mt-2 {
    margin-top: 25px;
}
.mt-3 {
    margin-top: 45px;
}
.btn-custom{
    padding-left: 45px;
    padding-right: 45px;
    border-radius: 10px;
    border-color:transparent !important;
}
.btn-grey{
    background: #F2F2F2;
}
.btn-red{
    background: #D50606;
}
/* berkas */
.box-folder{
    width: 100%;
    position: relative;
    min-height: 200px;
    padding-bottom: 20px;
}
.title-folder{
    background: #F2F2F2;
    padding: 8px 14px;
    width: 100%;
}
.title-folder .title-f{
    font-weight: bold;
    font-size: 16px;
    color: #101010;
    margin-bottom: 0px;
}
.title-o{
    margin-top: 20px;
    font-weight: bold;
    font-size: 16px;
    color: #101010;
}
.title-folder .slug-f{
    font-size: 16px;
    color: #101010;
    margin-bottom: 0px;
}
.field-folder{
    width: 100%;
    position: relative;
    min-height: 100px;
    padding-bottom: 20px;
    display: flex;
    margin-top: 20px;
    margin-bottom: 20px;
}
.text-folder{
    font-size: 14px;
    padding-top: 10px;
    color: #101010;
    line-height: 20px;
    display: flex;
}
.upload-file{
    background: #FCFCFC;
    border: 1px solid #F1F1F1;
    box-sizing: border-box;
    border-radius: 10px;
    text-align: center;
    padding: 10px 60px;
    cursor: pointer;
}
.type_file{
    color: #999999;
    margin-top: 10px;
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
}
.flex-1{
    flex: 1;
}
.float-sm-left{
    bottom: 35px;
    position: fixed;
    right: 25px;
    cursor: pointer;
}
.hidden{
    display: none;
}

/* loading */

/* common */
.loading {
    font-size: 84px;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    text-align: center;
  }
  .loading span {
    display: inline-block;
    margin: 0 -0.05em;
  }
  
  /* code #1 */
  .loading01 span {
    animation: loading01 1.4s infinite alternate;
  }
  .loading01 span:nth-child(1) {
    animation-delay: 0s;
  }
  .loading01 span:nth-child(2) {
    animation-delay: 0.1s;
  }
  .loading01 span:nth-child(3) {
    animation-delay: 0.2s;
  }
  .loading01 span:nth-child(4) {
    animation-delay: 0.3s;
  }
  .loading01 span:nth-child(5) {
    animation-delay: 0.4s;
  }
  .loading01 span:nth-child(6) {
    animation-delay: 0.5s;
  }
  .loading01 span:nth-child(7) {
    animation-delay: 0.6s;
  }
  
  @keyframes loading01 {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  /* code #2 */
  .loading02 span {
    animation: loading02 1.2s infinite alternate;
  }
  .loading02 span:nth-child(2) {
    animation-delay: 0.2s;
  }
  .loading02 span:nth-child(3) {
    animation-delay: 0.4s;
  }
  .loading02 span:nth-child(4) {
    animation-delay: 0.6s;
  }
  .loading02 span:nth-child(5) {
    animation-delay: 0.8s;
  }
  .loading02 span:nth-child(6) {
    animation-delay: 1s;
  }
  .loading02 span:nth-child(7) {
    animation-delay: 1.2s;
  }
  
  @keyframes loading02 {
    0% {
      filter: blur(0);
      opacity: 1;
    }
    100% {
      filter: blur(5px);
      opacity: 0.2;
    }
  }
  /* code #3 */
  .loading03 span {
    margin: 0 -0.075em;
    animation: loading03 0.7s infinite alternate;
  }
  .loading03 span:nth-child(2) {
    animation-delay: 0.1s;
  }
  .loading03 span:nth-child(3) {
    animation-delay: 0.2s;
  }
  .loading03 span:nth-child(4) {
    animation-delay: 0.3s;
  }
  .loading03 span:nth-child(5) {
    animation-delay: 0.4s;
  }
  .loading03 span:nth-child(6) {
    animation-delay: 0.5s;
  }
  .loading03 span:nth-child(7) {
    animation-delay: 0.6s;
  }
  
  @keyframes loading03 {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(0.8);
    }
  }
  /* code #4 */
  .loading04 span {
    animation: loading04 0.7s infinite;
  }
  .loading04 span:nth-child(2) {
    animation-delay: 0.1s;
  }
  .loading04 span:nth-child(3) {
    animation-delay: 0.2s;
  }
  .loading04 span:nth-child(4) {
    animation-delay: 0.3s;
  }
  .loading04 span:nth-child(5) {
    animation-delay: 0.4s;
  }
  .loading04 span:nth-child(6) {
    animation-delay: 0.5s;
  }
  .loading04 span:nth-child(7) {
    animation-delay: 0.6s;
  }
  
  @keyframes loading04 {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(15px);
    }
  }
  /* code #5 */
  .loading05 {
    perspective: 1000px;
  }
  .loading05 span {
    transform-origin: 50% 50% -25px;
    transform-style: preserve-3d;
    animation: loading05 1.6s infinite;
  }
  .loading05 span:nth-child(2) {
    animation-delay: 0.1s;
  }
  .loading05 span:nth-child(3) {
    animation-delay: 0.2s;
  }
  .loading05 span:nth-child(4) {
    animation-delay: 0.3s;
  }
  .loading05 span:nth-child(5) {
    animation-delay: 0.4s;
  }
  .loading05 span:nth-child(6) {
    animation-delay: 0.5s;
  }
  .loading05 span:nth-child(7) {
    animation-delay: 0.6s;
  }
  
  @keyframes loading05 {
    0% {
      transform: rotateX(-360deg);
    }
    70% {
      transform: rotateX(0);
    }
  }
  /* code #6 */
  .loading06 span {
    position: relative;
    color: rgba(0, 0, 0, 0.2);
  }
  .loading06 span::after {
    position: absolute;
    top: 0;
    left: 0;
    content: attr(data-text);
    color: #fff;
    opacity: 0;
    transform: rotateY(-90deg);
    animation: loading06 4s infinite;
  }
  .loading06 span:nth-child(2)::after {
    animation-delay: 0.2s;
  }
  .loading06 span:nth-child(3)::after {
    animation-delay: 0.4s;
  }
  .loading06 span:nth-child(4)::after {
    animation-delay: 0.6s;
  }
  .loading06 span:nth-child(5)::after {
    animation-delay: 0.8s;
  }
  .loading06 span:nth-child(6)::after {
    animation-delay: 1s;
  }
  .loading06 span:nth-child(7)::after {
    animation-delay: 1.2s;
  }
  
  @keyframes loading06 {
    0%, 75%, 100% {
      transform: rotateY(-90deg);
      opacity: 0;
    }
    25%, 50% {
      transform: rotateY(0);
      opacity: 1;
    }
  }
  /* code #7 */
  .loading07 span {
    position: relative;
    color: rgba(0, 0, 0, 0.2);
  }
  .loading07 span::after {
    position: absolute;
    top: 0;
    left: 0;
    content: attr(data-text);
    color: #fff;
    opacity: 0;
    transform: scale(1.5);
    animation: loading07 3s infinite;
  }
  .loading07 span:nth-child(2)::after {
    animation-delay: 0.1s;
  }
  .loading07 span:nth-child(3)::after {
    animation-delay: 0.2s;
  }
  .loading07 span:nth-child(4)::after {
    animation-delay: 0.3s;
  }
  .loading07 span:nth-child(5)::after {
    animation-delay: 0.4s;
  }
  .loading07 span:nth-child(6)::after {
    animation-delay: 0.5s;
  }
  .loading07 span:nth-child(7)::after {
    animation-delay: 0.6s;
  }
  
  @keyframes loading07 {
    0%, 75%, 100% {
      transform: scale(1.5);
      opacity: 0;
    }
    25%, 50% {
      transform: scale(1);
      opacity: 1;
    }
  }
  /* code #8 */
  .loading08 span {
    position: relative;
    color: rgba(0, 0, 0, 0.2);
    animation: loading08-parent 5s infinite;
  }
  .loading08 span::after {
    position: absolute;
    top: 0;
    left: 0;
    content: attr(data-text);
    color: #fff;
    opacity: 0;
    animation: loading08-child 5s infinite;
  }
  .loading08 span:nth-child(2)::after {
    animation-delay: 0.2s;
  }
  .loading08 span:nth-child(3)::after {
    animation-delay: 0.4s;
  }
  .loading08 span:nth-child(4)::after {
    animation-delay: 0.6s;
  }
  .loading08 span:nth-child(5)::after {
    animation-delay: 0.8s;
  }
  .loading08 span:nth-child(6)::after {
    animation-delay: 1s;
  }
  .loading08 span:nth-child(7)::after {
    animation-delay: 1.2s;
  }
  
  @keyframes loading08-parent {
    0%, 35%, 100% {
      color: rgba(0, 0, 0, 0.2);
    }
    60%, 80% {
      color: #fff;
    }
  }
  @keyframes loading08-child {
    0% {
      opacity: 1;
    }
    25%, 100% {
      opacity: 0;
    }
  }
  .loading {
      margin-top: 20%;
  }
  div.loadFull,div.successFull{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(16, 16, 16, 0.5);
    z-index: 999999;
  }
  .loadFull p,.successFull p {
      text-align: center;
      font-weight: bold;
      color: #fff !important;
      letter-spacing: 4px;
  }
  .successFull a {
    color: #fff !important;
    padding: 10px;
    background: #d50606;
    border-radius: 20px;
    text-decoration: none;
  }
  .mr-2 {
      margin-right: 20px;
  }