| 1 |
|
| 2 |
.ablocks-carousel-swiper .swiper-wrapper { |
| 3 |
width: 100%; |
| 4 |
height: 100%; |
| 5 |
display: flex; |
| 6 |
} |
| 7 |
|
| 8 |
.ablocks-carousel-swiper .ablocks-carousel-swiper-slide { |
| 9 |
width: 100%; |
| 10 |
height: 100%; |
| 11 |
|
| 12 |
} |
| 13 |
|
| 14 |
.ablocks-carousel-swiper .ablocks-carousel-swiper-slide--custom { |
| 15 |
display: flex; |
| 16 |
justify-content: center; |
| 17 |
align-items: baseline; |
| 18 |
} |
| 19 |
.ablocks-carousel-swiper .ablocks-carousel-swiper-slide--custom button { |
| 20 |
padding: 10px 15px; |
| 21 |
border: 1px solid black; |
| 22 |
outline: none; |
| 23 |
background-color: black; |
| 24 |
color: white; |
| 25 |
cursor: pointer; |
| 26 |
transition: .4s ease; |
| 27 |
border-radius: 5px; |
| 28 |
} |
| 29 |
.ablocks-carousel-swiper .ablocks-carousel-swiper-slide--custom button:hover { |
| 30 |
padding: 10px 15px; |
| 31 |
border: 1px solid black; |
| 32 |
outline: none; |
| 33 |
background-color: transparent; |
| 34 |
cursor: pointer; |
| 35 |
color: black; |
| 36 |
} |
| 37 |
|
| 38 |
.ablocks-carousel-navigation__buttons .ablocks-carousel-navigation__button { |
| 39 |
border: none; |
| 40 |
position: absolute; |
| 41 |
transform: translateY(-50%); |
| 42 |
z-index: 5; |
| 43 |
|
| 44 |
font-size: 25px; |
| 45 |
outline: none; |
| 46 |
border: none; |
| 47 |
cursor: pointer; |
| 48 |
} |
| 49 |
|
| 50 |
.ablocks-carousel-navigation__buttons .ablocks-carousel-navigation__button .ablocks-icon-wrap{ |
| 51 |
box-sizing: unset; |
| 52 |
} |
| 53 |
|
| 54 |
.ablocks-carousel-navigation__buttons .ablocks-carousel-navigation__button--disabled { |
| 55 |
opacity: 0.6; |
| 56 |
} |
| 57 |
|
| 58 |
.ablocks-carousel-navigation__buttons .ablocks-carousel-navigation__button .ablocks-svg-icon { |
| 59 |
width: 1em; |
| 60 |
height: 1em; |
| 61 |
border-radius: 50%; |
| 62 |
} |
| 63 |
|
| 64 |
|
| 65 |
.ablocks-carousel-pagination { |
| 66 |
display: flex; |
| 67 |
z-index: 5; |
| 68 |
position: absolute; |
| 69 |
bottom: -15px !important; |
| 70 |
justify-content: center; |
| 71 |
left: 50% !important; |
| 72 |
transform: translateX(-50%); |
| 73 |
gap: 10px; |
| 74 |
} |
| 75 |
|
| 76 |
|
| 77 |
.ablocks-carousel-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal { |
| 78 |
gap: 0px; |
| 79 |
} |
| 80 |
|
| 81 |
.swiper-pagination-bullet.swiper-pagination-bullet-active { |
| 82 |
background: black; |
| 83 |
} |
| 84 |
|
| 85 |
.ablocks-carousel-autoplay-progress { |
| 86 |
position: absolute; |
| 87 |
right: 16px; |
| 88 |
bottom: 16px; |
| 89 |
z-index: 10; |
| 90 |
width: 48px; |
| 91 |
height: 48px; |
| 92 |
display: flex; |
| 93 |
align-items: center; |
| 94 |
justify-content: center; |
| 95 |
font-weight: bold; |
| 96 |
color: black; |
| 97 |
} |
| 98 |
|
| 99 |
.ablocks-carousel-autoplay-progress svg { |
| 100 |
--progress: 0; |
| 101 |
position: absolute; |
| 102 |
left: 0; |
| 103 |
top: 0px; |
| 104 |
z-index: 10; |
| 105 |
width: 100%; |
| 106 |
height: 100%; |
| 107 |
stroke-width: 4px; |
| 108 |
stroke: black; |
| 109 |
fill: none; |
| 110 |
stroke-dashoffset: calc(125.6px * (1 - var(--progress))); |
| 111 |
stroke-dasharray: 125.6; |
| 112 |
transform: rotate(-90deg); |
| 113 |
} |
| 114 |
.ablocks-carousel-navigation__buttons .swiper-button-lock{ |
| 115 |
display: block !important; |
| 116 |
} |