/*********************** UI ************************* *
 *  1. Buttons
 *  2. Forms
 *      2.1. Input
 *      2.2. Placeholder
 *      2.3. Misc Form Elements
 *  3. Misc UI Elements
****************************************************/

/******************* 1. Buttons ********************/

.uk-button {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    padding: 12px 18px;
    border: none;
    text-transform: none;
    border-radius: 4px;
    background: none;
}
.uk-button-primary,
.uk-light .uk-button-primary,
.uk-offcanvas-bar .uk-button-primary {
    color: #fff;
    background-color: #E5575B;
}
.uk-button-primary:hover, 
.uk-button-primary:focus,
.uk-light .uk-button-primary:hover,
.uk-light .uk-button-primary:focus,
.uk-offcanvas-bar .uk-button-primary:hover,
.uk-offcanvas-bar .uk-button-primary:focus {
    color: #fff;
    background-color: #bb474b;
}
.uk-button-secondary,
.uk-light .uk-button-secondary {
    color: #fff;
    background-color: #56565E;
}
.uk-button-secondary:hover, 
.uk-button-secondary:focus,
.uk-light .uk-button-secondary:hover,
.uk-light .uk-button-secondary:focus {
    color: #fff;
    background-color: #0B1709;
}
.uk-button-default,
.uk-light .uk-button-default,
.uk-offcanvas-bar .uk-button-default {
    color: #56565E;
    background-color: #F3F3F3;
}
.uk-button-default:hover, 
.uk-button-default:focus,
.uk-light .uk-button-default:hover,
.uk-light .uk-button-default:focus,
.uk-offcanvas-bar .uk-button-default:hover,
.uk-offcanvas-bar .uk-button-default:focus {
    color: #56565E;
    background-color: #d3d3d3;
}
.uk-button-link {
  padding: 0;
  background: none;
  color: #E5575B;
  text-transform: uppercase;
}

/******************** 2. Forms *********************/

/**** 2.1. Input ****/

.uk-input,
.uk-textarea,
.uk-select,
.uk-select:not([multiple]):not([size]),
.uk-light .uk-input {
    height: inherit;
    color: #56565E;
    font-family: "Inter", "Inter Fallback", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    padding: 15px 20px;
    border-radius: 2px;
    border: 1px solid #56565E;
    background: #FFF;
    text-align: left;
    min-height: 54px;
}
.uk-select:not([multiple]):not([size]) {
    background-image: url("../../img/select-field-arrow.svg");
    background-repeat: no-repeat;
    background-position: calc(100% - 20px) 50%;
}
.uk-input:focus,
.uk-textarea:focus,
.uk-light .uk-input:focus {
    color: #56565E;
    border-color: #56565E;
    background: #fff;
}
.uk-textarea {
    height: 175px;
}
.newsletter-form .uk-input {
    border-radius: 4px;
    line-height: 1.2;
    padding: 11px 18px;
    font-size: 16px;
}

/**** 2.2. Placeholder ****/

.uk-input::-ms-input-placeholder,
.uk-light .uk-input::-ms-input-placeholder {
    color: rgba(86, 86, 94, 0.5) !important;
}
.uk-input::placeholder,
.uk-light .uk-input::placeholder {
    color: rgba(86, 86, 94, 0.5);    
}
.uk-textarea::-ms-input-placeholder,
.uk-light .uk-textarea::-ms-input-placeholder {
    color: rgba(86, 86, 94, 0.5) !important;
}
.uk-textarea::placeholder,
.uk-light .uk-textarea::placeholder {
    color: rgba(86, 86, 94, 0.5);
}

/**** 2.3. Misc Form Elements ****/

.uk-form-label {
    color: #414147;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}
.wpcf7-response-output {
    display: none;
}
.uk-form-icon {
    color: #56565E;
    z-index: 1;
    display: block;
    padding: 18px 10px 18px 20px;
}
.amount-field {
    padding-left: 30px;
}

/*************** 3. Misc UI Elements ****************/
.border-radius {
    border-radius: 4px;
}
/* Cover */
.uk-object-cover {
    width: 100%;
    height: 100%;
}

/* Tile */
.uk-tile-muted {
    background-color: #56565E;
}
.uk-tile-primary {
    background-color: #eee;
}
.uk-tile-secondary {
    background-color: #E5575B;
}

/* Background */
.background-gray::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90%;
    background: #F9F9FB;
}

/* Grid */
.tile-grid {
    margin-left: -13px;
}
.tile-grid > * {
    padding-left: 13px;
}

/* Stack Cards */
.stack-cards {
    --stack-cards-gap: 60px;
}
.stack-cards__item {
    position: relative;
    position: -webkit-sticky;
    position: sticky;
    top: 50px;
    height: 100%;
    -webkit-transform-origin: center top;
            transform-origin: center top;
    padding-bottom: 110%;
    height: 0;
}
.stack-cards__item > * {
    padding: 15px 20px 20px;
    overflow: hidden; 
    width: 100%;
    height: 100%; 
    border-radius: 8px;
    background: #FFF;
    box-shadow: 0px 0px 50px -19px rgba(0, 0, 0, 0.20);
    position: absolute;
    top: 0;
    left: 0;
}

.uk-offcanvas-bar hr, .uk-offcanvas-bar .uk-hr {
    border-top-color: #E2E2E2;
}


/* Splide */
.splide-logo {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.splide-logo img {
    margin: 0 auto;
}
.splide-card-box {
    margin: 20px 0;
}

/* Animatio */
.scale-in {
	-webkit-animation: scale-in-center 2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: scale-in-center 2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
/* Start from scale(0.85) instead of scale(0) so the element has a non-zero
   intersection rect at first paint. With scale(0), Chrome can't classify the
   image as the LCP candidate until the transform grows past zero, which costs
   ~500ms on the hero image. The visual pop-in is still legible. */
@-webkit-keyframes scale-in-center {
    0% {
      -webkit-transform: scale(0.85);
              transform: scale(0.85);
      opacity: 1;
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
      opacity: 1;
    }
}
@keyframes scale-in-center {
    0% {
      -webkit-transform: scale(0.85);
              transform: scale(0.85);
      opacity: 1;
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
      opacity: 1;
    }
}
.uk-table th {
    color: #414147;
    font-size: 16px;
}
  
  