/* input: run-time error CSS1066: Unexpected end of file encountered */


* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body.colorlib-body {
  padding: 0;
  margin: 0;
}

.colorlib-body #colorlib-notfound {
  height:100vh;
}

#colorlib-notfound {
  position: relative;
  height: 60vh;
}

#colorlib-notfound .colorlib-notfound {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.colorlib-notfound {
  max-width: 920px;
  width: 100%;
  line-height: 1.4;
  text-align: center;
  padding-left: 15px;
  padding-right: 15px;
}

.colorlib-notfound .colorlib-notfound-404 {
  position: absolute;
  height: 100px;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}

.colorlib-notfound .colorlib-notfound-404 h1.colorlib-heading {
  font-family: 'Maven Pro', sans-serif;
  color: #ececec;
  font-weight: 900;
  font-size: 276px;
  margin: 0px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.colorlib-notfound h2.colorlib-heading {
  font-family: 'Maven Pro', sans-serif;
  font-size: 46px;
  color: #000;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0px;
}

.colorlib-notfound p {
  font-family: 'Maven Pro', sans-serif;
  font-size: 16px;
  color: #000;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 15px;
}

.colorlib-notfound a {
  font-family: 'Maven Pro', sans-serif;
  font-size: 14px;
  text-decoration: none;
  text-transform: uppercase;
  background: #189cf0;
  display: inline-block;
  padding: 16px 38px;
  border: 2px solid transparent;
  border-radius: 40px;
  color: #fff;
  font-weight: 400;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.colorlib-notfound a:hover {
  background-color: #fff;
  border-color: #189cf0;
  color: #189cf0;
}

.colorlib-notfound .colorlib-notfound-404 h1.colorlib-heading:after,
.colorlib-notfound .colorlib-notfound-404 h1.colorlib-heading:before,
.colorlib-notfound h2.colorlib-heading:after,
.colorlib-notfound h2.colorlib-heading:before {
  display: none;
}

@media only screen and (max-width: 480px) {
  .colorlib-notfound .colorlib-notfound-404 h1.colorlib-heading {
    font-size: 162px;
  }
  .colorlib-notfound h2.colorlib-heading {
    font-size: 26px;
  }
}

@media only screen and (max-height:600px){
  #colorlib-notfound {
    height:100vh;
  }
}


.wrapper {
    padding: 150px;
}

//CSS from core
.wp-core-ui .button-primary.focus, .wp-core-ui .button-primary.hover, .wp-core-ui .button-primary:focus, .wp-core-ui .button-primary:hover {
    background: #008ec2;
    border-color: #006799;
    color: #fff;
}

.wp-core-ui .button-group.button-large .button, .wp-core-ui .button.button-large {
    height: 30px;
    line-height: 28px;
    padding: 0 12px 2px;
}

.wp-core-ui .button-primary {
    background: #0085ba;
    border-color: #0073aa #006799 #006799;
    box-shadow: 0 1px 0 #006799;
    color: #fff;
    text-decoration: none;
    text-shadow: 0 -1px 1px #006799, 1px 0 1px #006799, 0 1px 1px #006799, -1px 0 1px #006799;
}

.wp-core-ui .button, .wp-core-ui .button-primary, .wp-core-ui .button-secondary {
    display: inline-block;
    text-decoration: none;
    font-size: 13px;
    line-height: 26px;
    height: 28px;
    margin: 0;
    padding: 0 10px 1px;
    cursor: pointer;
    border-width: 1px;
    border-style: solid;
    -webkit-appearance: none;
    border-radius: 3px;
    white-space: nowrap;
    box-sizing: border-box;
}


//CSS from Gutenberg
.components-button.is-primary.is-busy, .components-button.is-primary.is-primary.is-busy[disabled] {
    color: #fff !important;
    background-size: 100px 100% !important;
    background-image: linear-gradient(-45deg,#0085ba 28%,#005d82 0,#005d82 72%,#0085ba 0) !important;
    border-color: #00435d !important;
}

.components-button.is-busy {
    animation: components-button__busy-animation 2.5s infinite linear;
    background-size: 100px 100% !important;
    background-image: repeating-linear-gradient(-45deg,#e2e4e7,#fff 11px,#fff 0,#e2e4e7 20px) !important;
    opacity: 1;
}


@keyframes components-button__busy-animation {
    0% {
        background-position: 200px 0
    }
}

.filepond--drop-label label {
    display: grid;
    grid-template-columns: auto 1fr; /* Two columns */
    grid-template-rows: 1fr 1fr; /* Two rows */
    align-items: center;
    text-align: left;
    padding: 10px;
    width: 100%;
    font-size: 15px !important;
}

.filepond--label {
    display: grid;
    grid-template-columns: auto 1fr; /* Two columns */
    grid-template-rows: 1fr 1fr; /* Two rows */
    align-items: center;
    text-align: left;
    padding: 10px;
    width: 100%;
}
/* Left-side text */
.filepond-label-text {
    display: flex;
    flex-direction: column;
    grid-row: span 2; /* Span both rows */
    word-break:break-word !important;
    white-space:normal!important;
    overflow-wrap:break-word !important;
}

/* Right-side upload icon (centered) */
.filepond-label-icon {
    display: flex;
    justify-content: right;
    align-items: center;
    grid-row: span 2;
    font-size: 20px;
    color: #525452;
}

    /* Target the span inside the label */
   

.filepond--root .filepond--drop-label, .filepond--drip, .filepond--panel-center, .filepond--panel-top, .filepond--panel-bottom {
    background-color: #eceffe;
    border-radius: 0px !important; 
    height: fit-content !important;
   