/*********************** UI ************************* *
 *  1. Buttons
 *  2. Forms
 *      2.1. Input
 *      2.2. Placeholder
 *      2.3. Misc Form Elements
 *  3. Misc UI Elements
 *  4. Animations
****************************************************/

/******************* 1. Buttons ********************/

.uk-button,
.gform_button.button {
    font-size: 15px;
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
    padding: 15px 22px;
    line-height: 1;
    border: 1px solid #DA3C57;
    border-radius: 50px;
    text-transform: none;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.uk-button-primary,
.uk-light .uk-button-primary,
.gform_button.button {
    color: #fff;
    background: #DA3C57;
}
.uk-button-secondary,
.uk-light .uk-button-secondary {
    color: #09151D;
    background: #B0D8C9;
    border-color: #B0D8C9;
}
.uk-button-primary:hover,
.uk-button-primary:focus,
.uk-light .uk-button-primary:hover,
.uk-light .uk-button-primary:focus,
.uk-button-secondary:hover,
.uk-button-secondary:focus,
.uk-light .uk-button-secondary:hover,
.uk-light .uk-button-secondary:focus {
    color: #fff;
    background: #7CBCC1;
    border-color: #7CBCC1;
}
.uk-button-outline {
    color: #fff;
    background: transparent;
}
.uk-light .uk-button-outline {
    border-color: #7CBCC1;
}
.uk-button-outline:hover,
.uk-button-outline:focus {
    color: #fff;
    border-color: #fff;
}
#sidebar .uk-button-secondary {
    padding: 15px 22px;
}

/**** 1.1. Service box links ****/

.service-box-link {
    font-family: 'Impact';
    text-transform: uppercase;
    font-size: 18px;
    line-height: 0.95;
    color: #fff;
    width: 116px;
    height: 116px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 14px;
}
.service-box-link:hover,
.service-box-link:focus {
    color: #fff;
    border-radius: 50px 0 50px 0;
}
.service-box-link-create-design {
    border-radius: 50px 0 0 0;
    background: #DA3C57;
}
.service-box-link-print-finishing {
    border-radius: 0 0 50px 0;
    background: #B0D8C9;
}
.service-box-link-publishing-services {
    border-radius: 50px 0 0 0;
    background: #577BA4;
}
.service-box-link-fulfilment-services {
    border-radius: 0 0 50px 0;
    background: #7CBCC1;
}

/**** 1.2. Scroll buttons ****/

.btn-scroll-down,
.btn-scroll-up {
    color: #fff;
    border: 2px solid #fff;
    border-radius: 999em;
    padding: 2px;
}
.btn-scroll-down:hover,
.btn-scroll-down:focus,
.btn-scroll-up:hover,
.btn-scroll-up:focus {
    color: #fff;
    opacity: 0.5;
}
.uk-icon:not(.uk-preserve) [stroke*="#"]:not(.uk-preserve) {
    stroke-width: 2px;
}

/******************** 2. Forms *********************/

/**** 2.1. Input ****/

.uk-input,
.uk-textarea,
.uk-select,
.uk-select:not([multiple]):not([size]),
.choice-panel,
.form-input input,
.form-input textarea {
    font-family: 'DM Sans';
    height: auto;
    background: #fff;
    padding: 15px 25px !important;
    border-radius: 10px;
    border: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    color: #6A6A6A;
    vertical-align: middle;
    display: inline-block;
    max-width: 100%;
    width: 100%;
    transition: 0.2s ease-in-out;
    transition-property: color, background-color, border;
    box-sizing: border-box;
    -webkit-appearance: none;
}
.uk-textarea,
.form-input textarea {
    min-height: 302px;
}
.choice-panel > label {
    display: block;
}
.choice-panel > label > span {
    border: 1px solid #DA3C57;
    padding: 2px;
    margin-right: 10px;
    height: 20px;
    width: 20px;
    display: inline-block;
    border-radius: 50%;
    transform: translateY(5px);
}
.uk-radio {
    background: transparent;
    margin-top: -14px;
    border: none;
    height: 14px;
    width: 14px;
}
.uk-radio:checked,
.uk-radio:focus,
.uk-radio:active,
.uk-radio:checked:focus,
.uk-checkbox:checked:focus,
.uk-checkbox:indeterminate:focus {
    background: #DA3C57;
    border: none;
}
input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/**** 2.2. Placeholder ****/

::-ms-input-placeholder {
    color: #ccc !important;
    opacity: 1;
}
::placeholder {
    color: #ccc;
    opacity: 1;
}
::-ms-input-placeholder {
    color: #ccc !important;
    opacity: 1;
}
::placeholder {
    color: #ccc;
    opacity: 1;
}
.gform_wrapper.gravity-theme fieldset.choice-panel {
    background: #fff;
}
.gform_wrapper.gravity-theme .choice-panel legend.gfield_label {
    font-weight: 400;
    display: contents;
}
.gform-field-row--span-three {
    grid-row: span 3;
}
.ginput_container.ginput_container_radio {
    margin-top: 15px;
}
input[type="radio"] {
    margin-top: -14px;
    border: none;
    height: 19px;
    width: 19px;
    background-image: url(../../img/unchecked.svg);
    background-color: transparent;
    box-sizing: border-box;
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    -moz-appearance: none;
}
input[type="radio"]:checked {
    background-image: url(../../img/checked.svg);
}
.frame-wrap {
    padding: 25px;
    background: white;
}

/**** 2.3. Misc Form Elements ****/

/*************** 3. Misc UI Elements ****************/

.uk-grid-divider > :not(.uk-first-column)::before {
    border-left: 3px solid #B0D8C9;
}
.border {
    position: relative;
}
.border::before {
    content: "";
    position: absolute;
    height: 170px;
    width: 3px;
    top: 0;
    right: 0;
    background: #B0D8C9;
}
.page-homepage .corner-top,
.page-homepage .corner-bottom {
    display: none;
}
.dot {
	color: #DA3C57;
}
#breadcrumbs {
    position: relative;
    z-index: 1;
}
.uk-breadcrumb > * > * {
    text-transform: uppercase;
}
.uk-breadcrumb > * > *,
.uk-breadcrumb > :last-child > span,
.uk-breadcrumb > :last-child > a:not([href]),
.uk-breadcrumb > :nth-child(n+2):not(.uk-first-column)::before {
    color: #393E64;
}
.uk-breadcrumb > :nth-child(n+2):not(.uk-first-column)::before {
    content: ">";
    margin: 0 10px 0 calc(10px - 4px);
}
.uk-breadcrumb > * > :hover,
.uk-breadcrumb > * > :focus,
#breadcrumbs span a:hover,
#breadcrumbs span a:focus {
    color: #D83E59;
}
#breadcrumbs span,
#breadcrumbs span a {
    color: #393E64;
    font-size: 0.875rem;
}
#breadcrumbs .separator {
    margin: 0 10px 0 calc(10px - 4px);
}
.uk-border-rounded {
    border-radius: 10px;
}
.uk-subnav-pill > * > :first-child {
    padding: 5px 10px;
    background: transparent;
    color: #6A6A6A;
    text-transform: none;
    font-size: 13px;
    border-bottom: 1px solid transparent;
}
.uk-subnav-pill > .uk-active > a,
.uk-subnav-pill > li > a:hover,
.uk-subnav-pill > li > a:focus {
    background-color: transparent;
    color: #587CA2;
    border-bottom: 1px solid #587CA2;
}
.uk-overlay-primary {
    background: rgba(124, 188, 193, 0.9);
}
.uk-panel {
    background: #fff;
    border-radius: 10px;
    padding: 20px 15px 22px 22px;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

/**** 3.1. Testimonials slider ****/

.testimonial-single {
    color: #6A6A6A;
    font-size: 18px;
    padding: 0 10px;
}
.testimonial-single .uk-panel {
    box-shadow: none;
}
.testimonial-single .uk-panel::before {
    content: "“";
    position: absolute;
    z-index: 0;
    top: -50px;
    left: 30px;
    font-family: 'Impact';
    font-size: 550px;
    line-height: 1;
    color: #EFEFEF;
}
.testimonial-single p {
    font-style: italic;
}
.testimonial-single p:last-child {
    margin-bottom: 0;
}
.testimonial-single small {
    font-size: 16px;
    font-style: normal;
}
.uk-light .uk-slidenav {
    color: #B1D8C9;
}
.page-homepage .uk-slidenav-previous {
    right: 99%;
}
.page-homepage .uk-slidenav-next {
    left: 99%;
}

/**** 3.2. Accordion ****/

.uk-accordion > li {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}
.uk-accordion-title::before {
    background-image: url("../../img/accordion-close.svg");
    width: 30px;
    height: 30px;
}
.uk-open > .uk-accordion-title::before {
    background-image: url("../../img/accordion-open.svg");
}
.uk-accordion-content {
    padding-right: 40px;
}
.uk-accordion-content h3 {
    font-size: 16px;
    margin-bottom: 0;
}
.uk-accordion-content h3 + p {
    margin-top: 5px;
}