/*
* 2007-2021 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author PrestaShop SA <contact@prestashop.com>
*  @copyright  2007-2021 PrestaShop SA
*  @license    http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*/
.owl-item.active .ukhome-slider-items-title {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInDownSlider;
    animation-delay: .5s;
}
.ukhome-slider-items-title {
    margin-bottom: 15px;
    font-size: 40px;
    font-family: var(--uktheme-font-2);
    color: var(--theme-custom-color);
    font-weight: 300;
    letter-spacing: 2px;
}
.owl-item.active .ukhome-slider-items-sub-title {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInLeftSlider;
    animation-delay: .9s;
}
.ukhome-slider-items-sub-title {
    margin-bottom: 24px;
}
.ukhome-slider-items-description h3 span {
    color: var(--theme-custom-color);
}
.owl-carousel .owl-item .ukhome-slider-items-sub-title img {
    display: inline-block;
    margin-bottom: 15px;
}
.ukhome-slider-items-sub-title h2 {
    font-size: 24px;
    font-weight: 200;
    text-transform: capitalize;
    color: #000;
    margin: 0;
    font-family: var(--uktheme-font-1);
}
.ukhome-slider-items-description h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}
.owl-item.active .ukhome-slider-items-description {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInLeftSlider;
    animation-delay: 1.3s;
}
.ukhome-slider-items-description {
    margin-bottom: 20px;
}
.owl-item.active .ukhome-slider-items-btn {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInUpSlider;
    animation-delay: 1.5s;
}
.ukhome-slider-items-btn {
    margin-top: 15px;
}
#ukhome-slider-block-wrapper .owl-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 25px;
    margin: 0;
}
@keyframes fadeInDownSlider {
    0% {
        -webkit-transform: translate3d(0, -40%, 0);
        opacity: 0;
        transform: translate3d(0, -40%, 0)
    }
    to {
        -webkit-transform: translateZ(0);
        opacity: 1;
        transform: translateZ(0)
    }
}
@keyframes fadeInUpSlider {
    0% {
        -webkit-transform: translate3d(0, 100%, 0);
        opacity: 0;
        transform: translate3d(0, 100%, 0)
    }
    to {
        -webkit-transform: translateZ(0);
        opacity: 1;
        transform: translateZ(0)
    }
}
@keyframes fadeInLeftSlider {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-20%, 0, 0);
        transform: translate3d(-20%, 0, 0)
    }
    to {
        -webkit-transform: translateZ(0);
        opacity: 1;
        transform: translateZ(0)
    }
}
.ukhome-slider-items-content {
    position: absolute;
    top: 50%;
    transform: translateY(-49%);
    max-width: 50%;
    margin: 0 auto;
}
.ukhome-slider-items-content.left {
    max-width: 50%;
    left: 8%;
    text-align: left;
}
.ukhome-slider-items-content.center {
    max-width: 50%;
    margin: 0 auto;
    left: 0;
    right: 0;
    text-align: center;
}
.ukhome-slider-items-content.right {
    max-width: 50%;
    right: 8%;
    left: auto;
    text-align: right;
}
.ukhome-slider-items-content.hide {
    display: none;
}
.ukhome-slider-inner {
    position: relative;
}
.ukhome-slider-prev-btn {
    position: absolute;
    left: 40px;
    right: auto;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    height: 30px;
    width: 30px;
}
.ukhome-slider-next-btn {
    position: absolute;
    right: 40px;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    height: 30px;
    width: 30px;
}
.ukhome-slider-prev-btn:before {
    position: relative;
    content: '';
    width: 100%;
    height: 100%;
    border-width: 2px 2px 0 0;
    border-style: solid;
    border-color: #c7c7c7;
    transition: 0.2s ease;
    display: block;
    transform-origin: center center;
    transform: scale(0.6) rotate(-133deg);
}
.ukhome-slider-next-btn:before {
    position: relative;
    content: '';
    width: 100%;
    height: 100%;
    border-width: 2px 2px 0 0;
    border-style: solid;
    border-color: #c7c7c7;
    transition: 0.2s ease;
    display: block;
    transform-origin: center center;
    transform: scale(0.6) rotate(45deg);
}
.ukhome-slider-prev-btn:hover:before {
    border-color: var(--theme-custom-color);
    transform: scale(0.9) rotate(-133deg);
}
.ukhome-slider-next-btn:hover:before {
    border-color: var(--theme-custom-color);
    transform: scale(0.9) rotate(45deg);
}
.ukhome-slider-prev-btn i,
.ukhome-slider-next-btn i {
    display: none;
}
@media(max-width: 991px) {
    .ukhome-slider-items-description h3,
    .ukhome-slider-items-sub-title h2 {
        font-size: 24px;
        font-weight: 400;
    }
    .ukhome-slider-items-content.left {
        left: 11%;
        width: 55%;
    }
    .ukhome-slider-items-content.right {
        right: 11%;
        width: 55%;
    }
    .ukhome-slider-prev-btn {
        left: 5px;
    }
    .ukhome-slider-next-btn {
        right: 5px;
    }
    .ukhome-slider-items-title {
        margin-bottom: 10px;
        font-size: 15px;
    }
    .ukhome-slider-items-btn a {
        padding: 5px 20px;
    }
    #ukhome-slider-block-wrapper .owl-dots {
        bottom: 10px;
    }
}
@media(max-width: 767px) {
    .ukhome-slider-items-description h3 {
        font-size: 10px;
        font-weight: 400;
    }
    .ukhome-slider-items-sub-title h2 {
        font-size: 14px;
        font-weight: 400;
    }
    .ukhome-slider-items-description {
        margin-bottom: 0;
    }
    .ukhome-slider-items-sub-title {
        margin-bottom: 15px;
    }
    .ukhome-slider-items-title {
        font-size: 11px;
    }
    .ukhome-slider-items-btn {
        display: none;
    }
    .ukhome-slider-items-content.left {
        left: 11%;
    }
    .ukhome-slider-items-content.right {
        right: 11%;
    }
    .ukhome-slider-prev-btn {
        left: 5px;
    }
    .ukhome-slider-next-btn {
        right: 5px;
    }
}
#ukhome-slider-block-wrapper .owl-item .item img {
    transition: all 1s ease-in-out !important;
    transition-delay: .3s !important;
    -webkit-transform: translateX(80px);
    transform: translateX(80px);
}
#ukhome-slider-block-wrapper .owl-item.active .item img {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}