@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap');

.toplist-footitalia__wrapper {
    margin: 32px 0;
}

.toplist-footitalia__offers {
    display: flex;
    flex-direction: column;
    counter-reset: toplist-footitalia-counter 0;
    gap: 12px;
}

.toplist-footitalia__filter-tags-json {
    box-sizing: border-box;
}

.toplist-footitalia__filter-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: 16px 0;
    gap: 12px;
}

.toplist-footitalia__filter-tag {
    font-family: 'Big Shoulders Text', sans-serif;
    font-size: 14px;
    font-weight: 900;
    font-style: normal;
    line-height: 16px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    justify-content: center;
    height: 32px;
    padding: 8px 16px;
    cursor: pointer;
    user-select: none;
    text-align: center;
    text-transform: uppercase;
    color: #777;
    border: 1px solid #e4e4e4;
    border-radius: 50px;
}

.toplist-footitalia__filter-tag.filter-tag-active {
    color: #3350b8;
    background: #eee;
}

.toplist-footitalia__filter-tag img {
    width: 16px !important;
    height: 16px !important;
    margin-right: 4px;
}

.toplist-footitalia__offer {
    position: relative;
    display: grid;
    align-items: center;
    padding: 16px 16px 0;
    counter-increment: toplist-footitalia-counter 1;
    border: 1px solid #e4e4e4;
    border-radius: 8px;
    background: #fff;
    box-shadow:
        0 1px 2px 0 #0000000a,
        0 4px 16px 0 #0000000f;
    gap: 20px 24px;
    grid-template-areas:
        'logo main actions'
        'info info info';
    grid-template-columns: 183px auto 180px;
    grid-template-rows: 1fr auto;
}

.toplist-footitalia__offer:before {
    font-family: 'Big Shoulders Text', sans-serif;
    font-size: 12px;
    font-weight: 700;
    font-style: normal;
    line-height: 22px;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 26px;
    content: counter(toplist-footitalia-counter);
    text-align: center;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #fff;
    border-radius: 7px 0 5px;
    background: #3350b8;
}

.toplist-footitalia__offer.highlighted-offer {
    border: 1px solid #029e4e;
}

.toplist-footitalia__offer.hidden {
    display: none;
}

.toplist-footitalia__offer-highlighted-label {
    font-family: 'Big Shoulders Text', sans-serif;
    font-size: 12px;
    font-weight: 700;
    font-style: normal;
    line-height: 12px;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px 12px 7px 16px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #fff;
    border-radius: 0 0 6px;
    background: #029e4e;
}

.toplist-footitalia__offer-logo-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 8px 12px;
    border-radius: 8px;
    background: #eee;
    grid-area: logo;
}

.toplist-footitalia__offer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 167px;
    height: 80px;
}

.toplist-footitalia__offer-logo img {
    width: 167px;
    height: 80px;
    object-fit: contain;
}

.toplist-footitalia__offer-rating {
    position: absolute;
    top: calc(100% - 11px);
    left: 50%;
    display: flex;
    align-items: center;
    height: 22px;
    padding: 0 5px 0 7px;
    transform: translateX(-50%);
    border: 1px solid #3350b8;
    border-radius: 4px;
    background: #fff;
    gap: 3px;
}

.toplist-footitalia__offer-rating-value {
    font-family: 'Big Shoulders Text', sans-serif;
    font-size: 14px;
    font-weight: 700;
    font-style: normal;
    line-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    color: #3350b8;
}

.toplist-footitalia__offer-rating-value:after {
    width: 12px;
    height: 12px;
    margin-left: 3px;
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cg clip-path='url(%23clip0_17172_6304)'%3E%3Cpath d='M6.00011 0.29361L7.85401 4.05042L12 4.65301L8.99994 7.5771L9.70813 11.7064L6.00011 9.75692L2.29187 11.7064L3.00006 7.5771L0 4.65301L4.14599 4.05042L6.00011 0.29361Z' fill='%23EFA01C'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_17172_6304'%3E%3Crect width='12' height='12' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}

.toplist-footitalia__offer-rating-title {
    font-family: 'Big Shoulders Text', sans-serif;
    font-size: 12px;
    font-weight: 700;
    font-style: normal;
    line-height: 22px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #3350b8;
}

.toplist-footitalia__offer-main {
    display: flex;
    flex-direction: column;
    gap: 6px;
    grid-area: main;
}

.toplist-footitalia__offer-brand-name {
    font-family: Inter, sans-serif;
    font-size: 10px;
    font-weight: 400;
    font-style: normal;
    line-height: 14px;
    letter-spacing: 0.1px;
    text-transform: uppercase;
    color: #777;
}

.toplist-footitalia__offer-logo-wrapper .toplist-footitalia__offer-brand-name {
    display: none;
}

.toplist-footitalia__offer-title {
    font-family: Inter, sans-serif;
    font-size: 20px;
    font-weight: 700;
    font-style: normal;
    line-height: 26px;
    letter-spacing: -0.2px;
    color: #3350b8;
}

.toplist-footitalia__offer-key-feature {
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
    line-height: 22px;
    display: flex;
    color: #222;
}

.toplist-footitalia__offer-key-feature:before {
    position: relative;
    top: 2px;
    width: 20px;
    min-width: 20px;
    height: 20px;
    margin-right: 6px;
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='18' viewBox='0 0 21 18' fill='none'%3E%3Cpath d='M10.5484 17.9753C10.4158 17.9512 10.2893 17.8861 10.1894 17.7796C10.1882 17.7784 10.1869 17.7772 10.1857 17.776L0.840559 7.67065C0.839739 7.66983 0.838918 7.66901 0.838528 7.66819C0.741497 7.56256 0.685012 7.43159 0.670715 7.29651H6.61427L10.5484 17.9753Z' fill='%2390D8F9'/%3E%3Cpath d='M20.6626 7.29655C20.6483 7.43163 20.5918 7.5626 20.4948 7.66823C20.4944 7.66905 20.4936 7.66987 20.4928 7.67069L11.1476 17.7759C11.1464 17.7771 11.1452 17.7784 11.144 17.7796C11.0441 17.886 10.9176 17.9511 10.785 17.9753L14.7191 7.29651H20.6626V7.29655Z' fill='%235EA5EC'/%3E%3Cpath d='M14.719 7.29651L10.7849 17.9753H10.7845C10.7067 17.9896 10.6265 17.9896 10.5487 17.9753H10.5483L6.6142 7.29651H14.719Z' fill='%2375CEF9'/%3E%3Cpath d='M6.6142 7.29656H0.670647C0.65428 7.15043 0.687834 6.9998 0.77217 6.86961L3.3608 2.88105C3.36162 2.87984 3.36244 2.87902 3.36326 2.87777C3.42467 2.78402 3.50776 2.70953 3.60397 2.65918L6.6142 7.29656Z' fill='%23E4F6FF'/%3E%3Cpath d='M10.6666 2.58301L6.61422 7.29652L3.60394 2.65914C3.69687 2.60961 3.80164 2.58301 3.91011 2.58301H10.6666Z' fill='%23D3EFFB'/%3E%3Cpath d='M20.6626 7.29652H14.7191L17.7293 2.65918C17.8255 2.70953 17.9086 2.78402 17.97 2.87777C17.9709 2.87898 17.9717 2.8798 17.9725 2.88105L20.5611 6.86961C20.6454 6.99973 20.679 7.15039 20.6626 7.29652Z' fill='%236BBEF6'/%3E%3Cpath d='M17.7293 2.65914L14.719 7.29648L10.6666 2.58301H17.4231C17.5316 2.58301 17.6364 2.60961 17.7293 2.65914Z' fill='%2390D8F9'/%3E%3Cpath d='M10.6666 2.58282L6.61438 7.29669H14.7189L10.6666 2.58282Z' fill='%23B1E4F9'/%3E%3Cpath d='M4.43073 10.9353C4.56929 10.85 4.56929 10.6487 4.43073 10.5634C4.12831 10.3773 3.89378 10.0987 3.76191 9.76906L3.69519 9.60222C3.62198 9.41921 3.36292 9.41921 3.28972 9.60222L3.223 9.76906C3.09113 10.0988 2.85659 10.3773 2.55417 10.5634C2.41562 10.6487 2.41562 10.85 2.55417 10.9353C2.85659 11.1214 3.09113 11.4 3.223 11.7296L3.28972 11.8965C3.36292 12.0795 3.62198 12.0795 3.69519 11.8965L3.76191 11.7296C3.89382 11.4 4.12831 11.1214 4.43073 10.9353Z' fill='%23FFE07D'/%3E%3Cpath d='M15.0624 12.7754C14.9239 12.6901 14.9239 12.4888 15.0624 12.4035C15.3648 12.2173 15.5994 11.9388 15.7312 11.6091L15.798 11.4423C15.8712 11.2593 16.1302 11.2593 16.2034 11.4423L16.2701 11.6091C16.402 11.9389 16.6366 12.2174 16.939 12.4035C17.0775 12.4888 17.0775 12.6901 16.939 12.7754C16.6366 12.9615 16.402 13.24 16.2701 13.5697L16.2034 13.7366C16.1302 13.9196 15.8712 13.9196 15.798 13.7366L15.7312 13.5697C15.5994 13.24 15.3649 12.9615 15.0624 12.7754Z' fill='%23FFE07D'/%3E%3Cpath d='M7.55268 2.7688C7.69124 2.68353 7.69124 2.48216 7.55268 2.39689C7.25026 2.21076 7.01573 1.93224 6.88385 1.60255L6.81714 1.43572C6.74393 1.25271 6.48487 1.25271 6.41167 1.43572L6.34495 1.60255C6.21307 1.93228 5.97854 2.2108 5.67612 2.39689C5.53757 2.48216 5.53757 2.68353 5.67612 2.7688C5.97854 2.95494 6.21307 3.23345 6.34495 3.56314L6.41167 3.72998C6.48487 3.91298 6.74393 3.91298 6.81714 3.72998L6.88385 3.56314C7.01573 3.23341 7.25022 2.9549 7.55268 2.7688Z' fill='%23FFE07D'/%3E%3Cpath d='M15.9466 1.48438C16.0852 1.39911 16.0852 1.19774 15.9466 1.11247C15.6442 0.926333 15.4097 0.647817 15.2778 0.31813L15.2111 0.151294C15.1379 -0.0317139 14.8788 -0.0317139 14.8056 0.151294L14.7389 0.31813C14.607 0.647856 14.3725 0.926372 14.07 1.11247C13.9315 1.19774 13.9315 1.39911 14.07 1.48438C14.3725 1.67051 14.607 1.94903 14.7389 2.27872L14.8056 2.44555C14.8788 2.62856 15.1379 2.62856 15.2111 2.44555L15.2778 2.27872C15.4097 1.94903 15.6442 1.67051 15.9466 1.48438Z' fill='%23FFE07D'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 20px;
}

.toplist-footitalia__offer:nth-child(6n + 1) .toplist-footitalia__offer-key-feature:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='20' viewBox='0 0 21 20' fill='none'%3E%3Cpath d='M8.05822 20L10.5424 12.5052L4.28979 11.2421L15.553 0L11.8056 8.75789L18.0582 10L8.05822 20Z' fill='%23F46700'/%3E%3C/svg%3E");
}

.toplist-footitalia__offer:nth-child(6n + 3) .toplist-footitalia__offer-key-feature:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='19' viewBox='0 0 19 19' fill='none'%3E%3Cpath d='M18.3572 0.684417C14.0732 0.24322 9.89503 2.29478 7.32065 5.65006C5.99924 7.36856 5.10142 9.42673 4.82788 11.6724L7.36918 14.2137C9.61487 13.9402 11.673 13.0423 13.3915 11.7209C16.7468 9.14657 18.7984 4.96843 18.3572 0.684417ZM11.512 7.52957C10.7311 6.74865 10.7311 5.48245 11.512 4.70152C12.2929 3.92059 13.5592 3.92059 14.3401 4.70151C15.121 5.48243 15.121 6.74867 14.3401 7.52959C13.5592 8.31052 12.293 8.31049 11.512 7.52957Z' fill='%23A459D1'/%3E%3Cpath d='M5.36051 11.1399C4.15697 10.7995 2.88265 10.8691 1.55298 11.259C2.24347 7.564 4.65459 5.75731 7.85328 5.11755C8.13203 7.35783 7.35123 9.45418 5.36051 11.1399Z' fill='%23A459D1'/%3E%3Cpath d='M7.90179 13.6813C8.24222 14.8848 8.17263 16.1591 7.78265 17.4888C11.4777 16.7983 13.2844 14.3872 13.9241 11.1885C11.6839 10.9098 9.58751 11.6906 7.90179 13.6813Z' fill='%23A459D1'/%3E%3Cpath d='M4.67348 17.1963C3.62564 18.2441 0.921126 18.1206 0.921126 18.1206C0.921126 18.1206 0.797564 15.4161 1.84541 14.3682C2.44325 13.7704 3.03666 13.5873 3.58152 13.6822C2.91314 14.3726 2.96387 16.0778 2.96387 16.0778C2.96387 16.0778 4.6691 16.1286 5.35954 15.4602C5.45442 16.005 5.27132 16.5984 4.67348 17.1963Z' fill='%23A459D1'/%3E%3C/svg%3E");
}

.toplist-footitalia__offer:nth-child(6n + 5) .toplist-footitalia__offer-key-feature:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='20' viewBox='0 0 21 20' fill='none'%3E%3Cpath d='M12.5416 1.56238C12.5308 1.84171 12.4434 2.11269 12.2891 2.34579C12.1349 2.57889 11.9195 2.76515 11.6666 2.88425C11.358 3.04495 11.0146 3.12757 10.6666 3.12488C9.63225 3.12488 8.79162 2.42488 8.79162 1.56238C8.79101 1.50069 8.79519 1.43905 8.80412 1.378C8.9135 0.603003 9.70725 -0.00012207 10.6666 -0.00012207C11.626 -0.00012207 12.4197 0.603003 12.5291 1.378C12.5381 1.43905 12.5422 1.50069 12.5416 1.56238Z' fill='%23FFD447'/%3E%3Cpath d='M20.6666 13.1248V16.2498H0.666626V13.1248H0.710376C0.81012 12.6564 1.08514 12.2439 1.47913 11.9717C2.07958 11.5725 2.6442 11.1218 3.16663 10.6248C3.48225 10.3092 3.65725 9.56545 3.751 8.7217C3.83151 7.85335 3.85968 6.98094 3.83538 6.1092C3.82105 5.2975 4.11856 4.51122 4.66663 3.91232C5.75094 2.66049 7.19631 1.77514 8.80413 1.37795C9.41246 1.2252 10.0431 1.18182 10.6666 1.24982C11.2901 1.18182 11.9208 1.2252 12.5291 1.37795C14.1369 1.77514 15.5823 2.66049 16.6666 3.91232C17.2147 4.51122 17.5122 5.2975 17.4979 6.1092C17.4698 7.55607 17.5198 9.97795 18.1666 10.6248C18.6891 11.1218 19.2537 11.5725 19.8541 11.9717C20.2481 12.2439 20.5231 12.6564 20.6229 13.1248H20.6666Z' fill='%23FFD447'/%3E%3Cpath opacity='0.1' d='M20.6666 13.1249V16.2499H0.666626V13.1249H0.710376C0.81012 12.6565 1.08514 12.244 1.47913 11.9718C2.07958 11.5725 2.6442 11.1219 3.16663 10.6249C3.48225 10.3093 3.65725 9.5655 3.751 8.72175C8.87913 9.728 15.1166 10.2249 13.7916 6.24988C13.3953 4.95893 12.6618 3.79709 11.6666 2.88425C10.8458 2.16177 9.86446 1.64542 8.80413 1.378C8.9135 0.603003 9.70725 -0.00012207 10.6666 -0.00012207C11.626 -0.00012207 12.4198 0.603003 12.5291 1.378C14.1369 1.7752 15.5823 2.66054 16.6666 3.91238C17.2147 4.51128 17.5122 5.29756 17.4979 6.10925C17.4698 7.55613 17.5198 9.978 18.1666 10.6249C18.6891 11.1219 19.2537 11.5725 19.8541 11.9718C20.2481 12.244 20.5231 12.6565 20.6229 13.1249H20.6666Z' fill='%231A1A1A'/%3E%3Cpath d='M20.6666 13.1249V16.2499H0.666626V13.1249H0.710376C0.806116 12.6713 1.06808 12.27 1.44475 11.9999C7.51211 10.5832 13.8243 10.5832 19.8916 11.9999C20.2662 12.2715 20.5268 12.6723 20.6229 13.1249H20.6666Z' fill='%23FFD447'/%3E%3Cpath opacity='0.2' d='M7.701 14.1593C3.626 14.4374 0.666626 15.2655 0.666626 16.2499V13.1249H0.710376C0.806116 12.6714 1.06808 12.2701 1.44475 11.9999C3.53301 11.5142 5.65622 11.1934 7.79475 11.0405C7.4912 12.054 7.45887 13.1294 7.701 14.1593Z' fill='white'/%3E%3Cpath d='M10.6666 18.4374C16.1895 18.4374 20.6666 17.458 20.6666 16.2499C20.6666 15.0418 16.1895 14.0624 10.6666 14.0624C5.14378 14.0624 0.666626 15.0418 0.666626 16.2499C0.666626 17.458 5.14378 18.4374 10.6666 18.4374Z' fill='%23FFD447'/%3E%3Cpath opacity='0.2' d='M20.6666 16.2499C20.6666 17.4593 16.1885 18.4374 10.6666 18.4374C5.14475 18.4374 0.666626 17.4593 0.666626 16.2499H20.6666Z' fill='%231A1A1A'/%3E%3Cpath opacity='0.4' d='M20.6666 16.2499H0.666626C0.666626 15.0405 5.14475 14.0624 10.6666 14.0624C16.1885 14.0624 20.6666 15.0405 20.6666 16.2499Z' fill='white'/%3E%3Cpath d='M10.6666 17.1874C15.1539 17.1874 18.7916 16.7676 18.7916 16.2499C18.7916 15.7321 15.1539 15.3124 10.6666 15.3124C6.17931 15.3124 2.54163 15.7321 2.54163 16.2499C2.54163 16.7676 6.17931 17.1874 10.6666 17.1874Z' fill='%23534741'/%3E%3Cpath d='M10.6666 19.9999C11.8747 19.9999 12.8541 19.0205 12.8541 17.8124C12.8541 16.6043 11.8747 15.6249 10.6666 15.6249C9.4585 15.6249 8.47913 16.6043 8.47913 17.8124C8.47913 19.0205 9.4585 19.9999 10.6666 19.9999Z' fill='%23FFD447'/%3E%3Cpath opacity='0.1' d='M12.8541 17.8124C12.8542 18.3311 12.6699 18.8329 12.3343 19.2282C11.9986 19.6236 11.5334 19.8868 11.0216 19.9709C10.5099 20.0551 9.98485 19.9546 9.54031 19.6874C9.09578 19.4202 8.76064 19.0038 8.59473 18.5124C8.95549 18.8319 9.41174 19.0232 9.89249 19.0566C10.3732 19.0899 10.8515 18.9634 11.2529 18.6967C11.6543 18.4301 11.9564 18.0382 12.112 17.5822C12.2676 17.1261 12.2681 16.6313 12.1135 16.1749C12.3466 16.3793 12.5333 16.6311 12.661 16.9135C12.7887 17.196 12.8546 17.5025 12.8541 17.8124Z' fill='%231A1A1A'/%3E%3Cpath opacity='0.4' d='M11.575 6.37925C11.7683 5.01234 10.5399 3.70837 8.83129 3.46675C7.12266 3.22512 5.58084 4.13734 5.38754 5.50425C5.19424 6.87115 6.42266 8.17512 8.13129 8.41675C9.83992 8.65837 11.3817 7.74615 11.575 6.37925Z' fill='white'/%3E%3Cpath opacity='0.4' d='M9.39638 5.75459C9.51756 4.89771 8.74746 4.08028 7.67632 3.92881C6.60518 3.77733 5.63862 4.34917 5.51744 5.20605C5.39627 6.06293 6.16637 6.88036 7.23751 7.03184C8.30865 7.18331 9.27521 6.61147 9.39638 5.75459Z' fill='white'/%3E%3Cpath opacity='0.2' d='M20.6666 13.1249V16.2499C20.6666 15.0405 16.1885 14.0624 10.6666 14.0624C10.151 14.0624 9.64164 14.0718 9.14476 14.0874C8.89789 14.0968 8.65414 14.1061 8.41351 14.1186C8.17289 14.1311 7.93539 14.1436 7.70101 14.1593C7.45888 13.1294 7.49121 12.054 7.79476 11.0405C8.05414 11.0218 8.31039 11.0061 8.56039 10.9936C8.68539 10.9874 8.81039 10.9811 8.93226 10.9749C9.11976 10.9655 9.30414 10.9593 9.48539 10.9561C9.56351 10.953 9.64164 10.9499 9.71976 10.9499C10.0479 10.9405 10.3635 10.9374 10.6666 10.9374C13.7722 10.9374 16.8674 11.2939 19.8916 11.9999C20.2662 12.2715 20.5268 12.6723 20.6229 13.1249H20.6666Z' fill='%231A1A1A'/%3E%3Cpath opacity='0.4' d='M10.0416 18.1249C10.5594 18.1249 10.9791 17.7051 10.9791 17.1874C10.9791 16.6696 10.5594 16.2499 10.0416 16.2499C9.52386 16.2499 9.10413 16.6696 9.10413 17.1874C9.10413 17.7051 9.52386 18.1249 10.0416 18.1249Z' fill='white'/%3E%3Cpath opacity='0.4' d='M9.82068 17.5914C10.1659 17.5914 10.4457 17.3116 10.4457 16.9664C10.4457 16.6213 10.1659 16.3414 9.82068 16.3414C9.4755 16.3414 9.19568 16.6213 9.19568 16.9664C9.19568 17.3116 9.4755 17.5914 9.82068 17.5914Z' fill='white'/%3E%3C/svg%3E");
}

.toplist-footitalia__offer-actions {
    grid-area: actions;
}

.toplist-footitalia__offer-cta-btn {
    font-family: 'Big Shoulders Text', sans-serif;
    font-size: 16px;
    font-weight: 900;
    font-style: normal;
    line-height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 48px;
    margin: 0 auto;
    padding: 6px 6px 6px 16px;
    text-transform: uppercase;
    color: #fff;
    border-radius: 12px;
    background-color: #029e4e;
    gap: 20px;
}

.toplist-footitalia__offer-cta-btn:after {
    width: 36px;
    height: 36px;
    margin-left: auto;
    padding: 10px;
    content: '';
    border-radius: 8px;
    background-color: #3350b8;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.33337 8H12.6667' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8 3.33334L12.6667 8.00001L8 12.6667' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.toplist-footitalia__offer-cta-btn:hover {
    text-decoration: none;
    color: #fff;
    background-color: #1035bb;
}

.toplist-footitalia__offer-cta-btn:hover:after {
    background-color: #029e4e;
}

.toplist-footitalia__offer-coupon-code-wrapper {
    display: none;
}

.toplist-footitalia__offer-info {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 12px 0;
    border-top: 1px solid #e4e4e4;
    gap: 32px;
    grid-area: info;
}

.toplist-footitalia__offer-facts {
    display: flex;
    gap: 32px;
}

.toplist-footitalia__offer-fact {
    display: flex;
    gap: 4px;
}

.toplist-footitalia__offer-fact-head,
.toplist-footitalia__offer-fact-body {
    font-family: Inter, sans-serif;
    font-size: 12px;
    font-weight: 400;
    font-style: normal;
    line-height: 16px;
    letter-spacing: 0.12px;
    color: #777;
}

.toplist-footitalia__offer-fact-body {
    color: #222;
}

.toplist-footitalia__offer-fact.license .toplist-footitalia__offer-fact-body {
    text-decoration: underline;
    text-underline-position: from-font;
}

.toplist-footitalia__offer-payments-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.toplist-footitalia__offer-payment-title {
    font-family: Inter, sans-serif;
    font-size: 12px;
    font-weight: 400;
    font-style: normal;
    line-height: 16px;
    margin-right: 4px;
    letter-spacing: 0.12px;
    color: #777;
}

.toplist-footitalia__offer-payments {
    display: inline-block;
    overflow: hidden;
    width: 250px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.toplist-footitalia__offer-payment {
    font-family: Inter, sans-serif;
    font-size: 12px;
    font-weight: 400;
    font-style: normal;
    line-height: 16px;
    letter-spacing: 0.12px;
    color: #222;
}

.toplist-footitalia__offer-payments-tooltip {
    font-family: Inter, sans-serif;
    font-size: 12px;
    font-weight: 400;
    font-style: normal;
    line-height: 16px;
    position: absolute;
    z-index: 10;
    top: 29px;
    left: 50%;
    flex-direction: column;
    width: max-content;
    padding: 8px;
    transform: translateX(-50%);
    letter-spacing: 0.12px;
    color: #fff;
    border-radius: 8px;
    background: #029e4e;
    filter: drop-shadow(0 1px 4px #0000000a) drop-shadow(0 8px 32px #0000001a);
}

.toplist-footitalia__offer-payments-wrapper:hover .toplist-footitalia__offer-payments-tooltip {
    display: flex !important;
}

.toplist-footitalia__offer-payments-tooltip:before {
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -8px;
    content: '';
    border-width: 8px;
    border-style: solid;
    border-color: transparent transparent #029e4e;
    border-top-width: 0;
}

.toplist-footitalia__offer-payment-in-tooltip {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}

.toplist-footitalia__offer-payment-in-tooltip-image-wrapper {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    width: 24px;
}

.toplist-footitalia__show-more-btn {
    font-family: 'Big Shoulders Text', sans-serif;
    font-size: 16px;
    font-weight: 900;
    font-style: normal;
    line-height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    height: 43px;
    margin: 20px auto 0;
    padding: 8px 16px;
    text-align: center;
    text-transform: uppercase;
    color: #3350b8;
    border: 2px solid #3350b8;
    border-radius: 4px;
}

.toplist-footitalia__show-more-btn:after {
    position: relative;
    bottom: 1px;
    width: 10px;
    height: 10px;
    margin-left: 4px;
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 4V20M4 12H20' stroke='%233350B8' stroke-width='4' stroke-linecap='square' stroke-linejoin='square'/%3E%3C/svg%3E");
    background-size: 10px;
}

.toplist-footitalia__show-more-btn:hover {
    cursor: pointer;
    color: #fff;
    background-color: #3350b8;
}

.toplist-footitalia__show-more-btn:hover:after {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 4V20M4 12H20' stroke='%23FFF' stroke-width='4' stroke-linecap='square' stroke-linejoin='square'/%3E%3C/svg%3E");
}

@media (max-width: 991px) {
    .toplist-footitalia__wrapper {
        margin: 24px 0;
    }

    .toplist-footitalia__filter-wrapper {
        overflow-x: scroll;
        flex-wrap: nowrap;
        width: 100vw;
        margin: 0 -16px 12px;
        padding: 0 16px;
    }

    .toplist-footitalia__filter-wrapper::-webkit-scrollbar {
        display: none;
    }

    .toplist-footitalia__filter-tag {
        font-size: 12px;
        line-height: 14px;
    }

    .toplist-footitalia__filter-tag img {
        width: 14px !important;
        height: 14px !important;
    }

    .toplist-footitalia__offer {
        padding-bottom: 12px;
        gap: 12px;
        grid-template-areas:
            'logo'
            'main'
            'actions'
            'info';
        grid-template-columns: auto;
        grid-template-rows: auto;
    }

    .toplist-footitalia__offer:before {
        font-size: 10px;
        line-height: 20px;
        width: 25px;
        height: 24px;
        letter-spacing: 0.5px;
    }

    .toplist-footitalia__offer-highlighted-label {
        font-size: 10px;
        line-height: 20px;
        padding: 2px 12px 2px 16px;
        letter-spacing: 0.5px;
    }

    .toplist-footitalia__offer-logo,
    .toplist-footitalia__offer-logo img {
        width: 145px;
        height: 70px;
    }

    .toplist-footitalia__offer-rating-value {
        font-size: 12px;
        line-height: 24px;
        letter-spacing: 0.6px;
    }

    .toplist-footitalia__offer-rating-title {
        font-size: 10px;
        line-height: 20px;
        letter-spacing: 0.5px;
    }

    .toplist-footitalia__offer-brand-name {
        font-size: 8px;
        line-height: 12px;
        position: absolute;
        right: 10px;
        bottom: 8px;
        letter-spacing: 0.08px;
    }

    .toplist-footitalia__offer-logo-wrapper .toplist-footitalia__offer-brand-name {
        display: block;
    }

    .toplist-footitalia__offer-main .toplist-footitalia__offer-brand-name {
        display: none;
    }

    .toplist-footitalia__offer-title {
        line-height: 30px;
        margin-top: 4px;
        text-align: center;
    }

    .toplist-footitalia__offer-key-feature {
        font-size: 12px;
        line-height: 20px;
        justify-content: center;
    }

    .toplist-footitalia__offer-key-feature:before,
    .toplist-footitalia__offer:nth-child(6n + 1) .toplist-footitalia__offer-key-feature:before,
    .toplist-footitalia__offer:nth-child(6n + 3) .toplist-footitalia__offer-key-feature:before,
    .toplist-footitalia__offer:nth-child(6n + 5) .toplist-footitalia__offer-key-feature:before {
        background-image: url("data:image/svg+xml,%3Csvg width='21' height='20' viewBox='0 0 21 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_17172_13189)'%3E%3Cpath d='M10.5 0.494476C5.06076 0.494476 0.642029 4.87112 0.642029 10.2472C0.642029 15.6234 5.06076 20 10.5 20C15.9392 20 20.358 15.6234 20.358 10.2472C20.358 4.8606 15.9287 0.494476 10.5 0.494476Z' fill='%23E5A100'/%3E%3Cpath d='M10.5 0C5.19751 0 0.873474 4.31352 0.873474 9.62651C0.873474 14.9395 5.18699 19.253 10.5 19.253C15.813 19.253 20.1265 14.9395 20.1265 9.62651C20.116 4.31352 15.8025 0 10.5 0Z' fill='%23FFCF00'/%3E%3Cpath d='M10.5 1.63071C6.0918 1.63071 2.50421 5.21829 2.50421 9.6265C2.50421 14.0347 6.0918 17.6223 10.5 17.6223C14.9082 17.6223 18.4958 14.0347 18.4958 9.6265C18.4958 5.21829 14.9082 1.63071 10.5 1.63071ZM10.5 16.8227C6.53367 16.8227 3.30379 13.5928 3.30379 9.6265C3.30379 5.66016 6.53367 2.43029 10.5 2.43029C14.4663 2.43029 17.6962 5.66016 17.6962 9.6265C17.6962 13.5928 14.4663 16.8227 10.5 16.8227Z' fill='%23E5A100'/%3E%3Cpath d='M10.2685 19.2215C10.2264 19.2215 10.1844 19.2004 10.1633 19.1794C10.1423 19.1478 10.1212 19.1162 10.1318 19.0742L10.1949 17.8432C10.2054 17.7696 10.2475 17.7275 10.3211 17.7275C10.3527 17.7275 10.3843 17.738 10.4053 17.7696C10.4263 17.7906 10.4369 17.8222 10.4369 17.8432L10.4158 19.0847C10.4158 19.1583 10.3527 19.2215 10.2685 19.2215ZM12.3516 19.0321C12.299 19.0321 12.2464 18.99 12.2359 18.9269L12.015 17.6854C12.015 17.6539 12.015 17.6328 12.0255 17.6118C12.036 17.5907 12.0676 17.5802 12.0886 17.5697H12.1097C12.1623 17.5697 12.1938 17.6013 12.2044 17.6433L12.4884 18.8743C12.4989 18.9164 12.4884 18.9479 12.4674 18.9795C12.4463 19.011 12.4148 19.0321 12.3832 19.0426H12.3622C12.3727 19.0321 12.3622 19.0321 12.3516 19.0321ZM8.17489 18.9374C8.16437 18.9374 8.15385 18.9374 8.14333 18.9374C8.10125 18.9269 8.06969 18.9058 8.04864 18.8637C8.0276 18.8322 8.0276 18.7901 8.03812 18.7691L8.37479 17.5487C8.38531 17.5066 8.43791 17.475 8.48 17.475H8.50104C8.55364 17.4855 8.5852 17.5381 8.57468 17.6013L8.31166 18.8217C8.30114 18.8848 8.23802 18.9374 8.17489 18.9374ZM14.3716 18.3903C14.3295 18.3903 14.2875 18.3588 14.2664 18.3167L13.7719 17.1594C13.7509 17.1068 13.7719 17.0542 13.8246 17.0226H13.8666C13.9087 17.0226 13.9403 17.0437 13.9613 17.0752L14.5084 18.2009C14.5294 18.243 14.5294 18.2746 14.5189 18.3167C14.5084 18.3482 14.4874 18.3693 14.4663 18.3798L14.4348 18.3903C14.4032 18.3798 14.3927 18.3903 14.3716 18.3903ZM6.18647 18.1799C6.16542 18.1799 6.14438 18.1799 6.12334 18.1694C6.09178 18.1483 6.07074 18.1273 6.0497 18.0852C6.03918 18.0431 6.03918 18.0116 6.06022 17.98L6.67042 16.8753C6.69146 16.8227 6.74407 16.8227 6.75459 16.8227C6.77563 16.8227 6.79667 16.8227 6.80719 16.8332C6.83875 16.8438 6.84928 16.8648 6.8598 16.8964C6.87032 16.9174 6.8598 16.9384 6.8598 16.9595L6.31272 18.0957C6.29167 18.1483 6.23907 18.1799 6.18647 18.1799ZM16.2233 17.3172C16.1707 17.3172 16.1286 17.2962 16.097 17.2541L15.3711 16.2336C15.3395 16.1915 15.3501 16.1283 15.3921 16.0968C15.4132 16.0757 15.4342 16.0757 15.4553 16.0757C15.4868 16.0757 15.5184 16.0863 15.5394 16.1178L16.318 17.0963C16.339 17.1278 16.3495 17.1594 16.3495 17.2015C16.3495 17.2435 16.3285 17.2751 16.2969 17.2962L16.2864 17.3067C16.2549 17.3172 16.2338 17.3172 16.2233 17.3172ZM4.41898 17.0121C4.38741 17.0121 4.35585 17.0016 4.33481 16.9805C4.27168 16.9279 4.26116 16.8332 4.31377 16.7701L5.14491 15.8338C5.16595 15.8127 5.19751 15.8022 5.22907 15.8022C5.25012 15.8022 5.28168 15.8127 5.2922 15.8232C5.33428 15.8548 5.35532 15.9179 5.31324 15.9705L4.5347 16.949C4.50314 16.991 4.46106 17.0121 4.41898 17.0121ZM17.7488 15.8443C17.7172 15.8443 17.6857 15.8338 17.6541 15.8022L16.7178 14.9711C16.6757 14.929 16.6757 14.8659 16.7072 14.8238C16.7283 14.8027 16.7598 14.7922 16.7914 14.7922C16.8125 14.7922 16.8335 14.8027 16.8545 14.8132L17.833 15.5918C17.8645 15.6128 17.8856 15.6549 17.8856 15.6865C17.8856 15.7075 17.8856 15.7496 17.854 15.7812L17.8435 15.7917V15.8022C17.8119 15.8338 17.7804 15.8443 17.7488 15.8443ZM2.97763 15.4761C2.93555 15.4761 2.89346 15.455 2.8619 15.4235C2.84086 15.3919 2.83034 15.3498 2.84086 15.3077C2.84086 15.2867 2.8619 15.2551 2.89346 15.2341L3.9245 14.4976C3.93502 14.4871 3.96658 14.4766 3.98762 14.4766C4.01919 14.4766 4.06127 14.4871 4.08231 14.5187C4.12439 14.5713 4.10335 14.6239 4.06127 14.666L3.08284 15.4445C3.04075 15.4655 3.00919 15.4761 2.97763 15.4761ZM18.9166 14.0873C18.8956 14.0873 18.8745 14.0768 18.8535 14.0768L17.7488 13.4666C17.6857 13.435 17.6857 13.3719 17.7067 13.3193L17.7172 13.2983V13.2877C17.7383 13.2667 17.7698 13.2457 17.8014 13.2457C17.8119 13.2457 17.8224 13.2457 17.8435 13.2562L18.9797 13.8033C19.0113 13.8243 19.0429 13.8559 19.0534 13.8874C19.0639 13.919 19.0639 13.9505 19.0429 13.9821L19.0323 14.0031V14.0137C19.0008 14.0663 18.9587 14.0873 18.9166 14.0873ZM1.87295 13.656C1.82034 13.656 1.77826 13.6244 1.75722 13.5718C1.73618 13.5402 1.73618 13.5087 1.7467 13.4666C1.75722 13.435 1.78878 13.4035 1.82034 13.3824L2.97763 12.8879C2.98815 12.8879 3.00919 12.8774 3.01971 12.8774C3.06179 12.8774 3.09336 12.8985 3.1144 12.9405C3.13544 12.9826 3.1144 13.0563 3.07232 13.0668L1.94659 13.6139C1.91503 13.6454 1.89399 13.656 1.87295 13.656ZM19.6741 12.0989C19.6636 12.0989 19.6531 12.0989 19.6425 12.0989L18.4327 11.7517C18.38 11.7412 18.3485 11.6781 18.359 11.6255V11.6149C18.38 11.5728 18.4116 11.5413 18.4642 11.5413H18.4853L19.7057 11.8253C19.7477 11.8359 19.7793 11.8569 19.8004 11.8885C19.8214 11.92 19.8214 11.9516 19.8214 11.9832C19.7898 12.0568 19.7372 12.0989 19.6741 12.0989ZM1.23118 11.6465C1.16805 11.6465 1.11545 11.6044 1.09441 11.5518V11.5308V11.5202C1.08389 11.4782 1.09441 11.4466 1.11545 11.4256C1.13649 11.394 1.16805 11.373 1.21014 11.3624L2.46211 11.1415H2.48315C2.52523 11.1415 2.5568 11.1731 2.56732 11.2046V11.2257V11.2362C2.57784 11.2888 2.54628 11.3414 2.49367 11.3519L1.27326 11.636C1.26274 11.6465 1.2417 11.6465 1.23118 11.6465ZM18.7167 9.94213C18.6431 9.93161 18.601 9.88952 18.601 9.81588C18.601 9.74223 18.6536 9.68963 18.7272 9.68963H19.9582C20.0002 9.68963 20.0318 9.71067 20.0634 9.73171C20.0844 9.76327 20.0949 9.79484 20.0949 9.8264V9.879C20.0949 9.92109 20.0844 9.94213 20.0739 9.95265C20.0423 9.98421 20.0002 10.0053 19.9582 10.0053L18.7167 9.94213ZM1.03128 9.53182C0.96816 9.53182 0.915556 9.46869 0.915556 9.39505C0.905035 9.31088 0.957639 9.25828 1.03128 9.25828L2.3043 9.3214C2.34638 9.3214 2.38846 9.36348 2.38846 9.42661C2.38846 9.46869 2.33586 9.5213 2.29378 9.5213L1.03128 9.53182ZM18.5589 8.09047C18.5063 8.09047 18.4537 8.05891 18.4432 7.99578C18.4327 7.96422 18.4432 7.93266 18.4537 7.91162C18.4642 7.89058 18.4853 7.88006 18.5168 7.86953L19.7478 7.58547H19.7793C19.8424 7.58547 19.895 7.62756 19.9056 7.68016V7.7012C19.9266 7.78537 19.8635 7.84849 19.7898 7.86953L18.5589 8.09047ZM2.54628 7.71172C2.53576 7.71172 2.52523 7.71172 2.52523 7.71172L1.2943 7.42766C1.22066 7.40662 1.17858 7.33297 1.19962 7.25933V7.24881V7.22777C1.22066 7.17516 1.27326 7.1436 1.32587 7.1436C1.33639 7.1436 1.34691 7.1436 1.35743 7.15412L2.58836 7.50131C2.6094 7.51183 2.63044 7.52235 2.64096 7.54339C2.65148 7.55391 2.66201 7.58547 2.65148 7.60652V7.61704V7.63808C2.63044 7.69068 2.59888 7.71172 2.54628 7.71172ZM17.9592 6.32298C17.9277 6.32298 17.8961 6.30194 17.8751 6.25986C17.8645 6.23881 17.8645 6.20725 17.8645 6.17569C17.8751 6.14413 17.8961 6.12309 17.9171 6.11256L19.0429 5.55496C19.0639 5.54444 19.0849 5.53392 19.106 5.53392C19.1586 5.53392 19.2007 5.56548 19.2217 5.60757C19.2322 5.63913 19.2428 5.68121 19.2217 5.7233C19.2112 5.75486 19.1796 5.78642 19.1481 5.79694L17.9908 6.31246L17.9803 6.32298C17.9803 6.32298 17.9697 6.32298 17.9592 6.32298ZM3.18804 5.99684C3.17752 5.99684 3.15648 5.99684 3.14596 5.98632L2.02024 5.43924C1.98868 5.41819 1.95711 5.38663 1.94659 5.35507C1.93607 5.32351 1.93607 5.28142 1.95711 5.24986L1.96763 5.22882V5.2183C1.9992 5.17622 2.04128 5.16569 2.08336 5.16569C2.1044 5.16569 2.12545 5.17622 2.14649 5.18674L3.25117 5.80746C3.28273 5.8285 3.29325 5.84955 3.30377 5.87059C3.31429 5.90215 3.30377 5.92319 3.29325 5.95475C3.27221 5.97579 3.23013 5.99684 3.18804 5.99684ZM17.0334 4.75538C17.0018 4.75538 16.9703 4.73434 16.9492 4.7133C16.9071 4.6607 16.9177 4.60809 16.9597 4.56601L17.9382 3.77695C17.9592 3.75591 17.9908 3.74539 18.0329 3.74539C18.0539 3.74539 18.1065 3.75591 18.1381 3.79799C18.1591 3.82956 18.1696 3.86112 18.1696 3.9032C18.1696 3.94528 18.1486 3.97685 18.1065 3.99789L17.0965 4.72382C17.0755 4.74486 17.0544 4.75538 17.0334 4.75538ZM4.20856 4.47132C4.18752 4.47132 4.16648 4.47132 4.14543 4.45028L3.167 3.66122C3.10388 3.60862 3.09336 3.52445 3.14596 3.46133C3.167 3.42977 3.20909 3.41925 3.25117 3.41925C3.28273 3.41925 3.31429 3.42977 3.33534 3.45081L4.2822 4.29247C4.30325 4.31351 4.31377 4.33455 4.31377 4.36612C4.31377 4.39768 4.30325 4.41872 4.29273 4.43976C4.27168 4.4608 4.24012 4.47132 4.20856 4.47132ZM15.7604 3.41925C15.7393 3.41925 15.7183 3.40872 15.6973 3.3982C15.6446 3.35612 15.6446 3.30352 15.6762 3.25091L16.4547 2.27248C16.4863 2.24092 16.5284 2.21988 16.5705 2.21988C16.5915 2.21988 16.6231 2.21988 16.6546 2.25144C16.6862 2.27248 16.6967 2.30404 16.6967 2.34613C16.6967 2.38821 16.6862 2.41977 16.6652 2.44081L15.834 3.38768C15.8235 3.40873 15.7919 3.41925 15.7604 3.41925ZM5.53418 3.19831C5.50262 3.19831 5.47105 3.18779 5.45001 3.16675L4.67147 2.18831C4.65043 2.15675 4.63991 2.11467 4.63991 2.08311C4.63991 2.06207 4.65043 2.01998 4.69252 1.99894C4.72408 1.9779 4.75564 1.96738 4.76616 1.96738C4.80824 1.96738 4.86085 1.98842 4.89241 2.0305L5.61834 3.0405C5.64991 3.08258 5.63939 3.14571 5.5973 3.18779C5.58678 3.18779 5.56574 3.19831 5.53418 3.19831ZM14.2349 2.41977C14.2243 2.41977 14.2033 2.41977 14.1928 2.40925C14.1717 2.39873 14.1507 2.37769 14.1402 2.34613C14.1297 2.31456 14.1297 2.29352 14.1507 2.26196L14.6978 1.13624C14.7188 1.08363 14.7714 1.05207 14.824 1.05207C14.8451 1.05207 14.8661 1.05207 14.8871 1.06259C14.9187 1.08363 14.9398 1.10467 14.9608 1.14676C14.9713 1.18884 14.9713 1.2204 14.9503 1.25197L14.3611 2.34613C14.3085 2.38821 14.2664 2.41977 14.2349 2.41977ZM7.10177 2.25144C7.05969 2.25144 7.02813 2.2304 7.00709 2.18831L6.44949 1.06259C6.42844 1.03103 6.42844 0.988946 6.43896 0.957384C6.44949 0.925821 6.48105 0.894259 6.51261 0.873217C6.52313 0.873217 6.54417 0.862697 6.56521 0.862697C6.61782 0.862697 6.67042 0.894259 6.69146 0.946863L7.18594 2.10415C7.20698 2.15675 7.18594 2.20936 7.13334 2.24092C7.13334 2.25144 7.12282 2.25144 7.10177 2.25144ZM12.52 1.76748C12.5095 1.76748 12.4989 1.76748 12.4884 1.76748C12.4569 1.75696 12.4358 1.73592 12.4148 1.71488C12.4042 1.69384 12.3937 1.6728 12.4042 1.64123L12.6778 0.410303C12.6883 0.347179 12.7514 0.294575 12.8146 0.294575H12.8461C12.9198 0.315616 12.9618 0.389262 12.9513 0.473428L12.6041 1.68332C12.5936 1.74644 12.5515 1.76748 12.52 1.76748ZM8.86926 1.68332C8.81666 1.68332 8.76406 1.65175 8.76406 1.60967L8.48 0.389262C8.46948 0.347179 8.48 0.305095 8.50104 0.273533C8.52208 0.241971 8.55364 0.23145 8.5852 0.220929H8.61677C8.67989 0.220929 8.74302 0.273533 8.75354 0.347179L8.97447 1.57811C8.97447 1.60967 8.97447 1.63071 8.96395 1.65175C8.95343 1.6728 8.92187 1.68332 8.90083 1.69384C8.87979 1.68332 8.86926 1.68332 8.86926 1.68332ZM10.6894 1.52551C10.6157 1.52551 10.5842 1.4729 10.5842 1.4203V0.168325C10.5842 0.0841591 10.6578 0.0315552 10.7209 0.0315552H10.7314C10.8051 0.0315552 10.8682 0.0946799 10.8682 0.178846L10.8051 1.43082C10.8051 1.4729 10.7525 1.52551 10.6894 1.52551Z' fill='%23FFE500'/%3E%3Cpath d='M13.2775 17.1173C12.3727 17.4645 11.3837 17.6433 10.3948 17.6433C7.95396 17.6433 5.43949 16.5492 3.84033 14.0768C3.4721 13.5192 3.34586 13.2141 3.34586 13.2141L3.81929 12.3409C3.81929 12.3304 3.81929 12.3198 3.82981 12.3198C4.89241 14.9606 7.49104 16.8227 10.5 16.8227C14.4663 16.8227 17.6962 13.5928 17.6962 9.62652C17.6962 8.86902 17.5805 8.13257 17.3595 7.43819V7.42767C17.5594 7.46976 17.9382 7.58549 18.2538 7.68017C19.4426 12.1936 16.8335 15.8022 13.2775 17.1173Z' fill='%23FFE500'/%3E%3Cpath d='M10.5 2.4303C6.53365 2.4303 3.30377 5.66018 3.30377 9.62651C3.30377 10.5734 3.49315 11.4782 3.82981 12.3093C4.79772 9.82641 7.61729 8.21673 9.92134 7.32246C11.8361 6.58601 15.2975 6.38611 17.349 7.41715C16.4127 4.53445 13.6983 2.4303 10.5 2.4303Z' fill='%23FFC500'/%3E%3Cpath d='M14.3927 5.10257H11.8046L11.7309 5.30246C11.6678 5.44976 11.4048 6.09152 11.1102 6.76485C10.8893 7.29089 10.6999 7.72224 10.5631 8.05891L9.27959 5.10257H6.61783L8.66938 8.95317H7.34376V10.7312H9.2375V11.0152H7.34376V12.7827H9.2375V14.3609H11.7204V12.7827H13.551V11.0152H11.7204V10.7312H13.551V8.95317H12.257L14.3927 5.10257Z' fill='%23FFE500'/%3E%3Cpath d='M13.8561 5.31299L11.7204 9.16359H13.2354V10.2998H11.4048V11.2151H13.2354V12.3514H11.4048V13.9295H9.55312V12.3514H7.65938V11.2151H9.55312V10.2998H7.65938V9.16359H9.19541L7.14386 5.31299H9.06916L10.5526 8.74276H10.5736C10.6683 8.47974 11.8782 5.66017 12.015 5.31299H13.8561Z' fill='%23C78C00'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_17172_13189'%3E%3Crect width='20' height='20' fill='white' transform='translate(0.5)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
    }

    .toplist-footitalia__offer-cta-btn {
        font-size: 15px;
        line-height: 14px;
        width: 100%;
    }

    .toplist-footitalia__offer-coupon-code-wrapper {
        font-family: 'Big Shoulders Text', sans-serif;
        font-size: 10px;
        font-weight: 700;
        font-style: normal;
        line-height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: max-content;
        margin: 12px auto 0;
        padding: 0 6px;
        letter-spacing: 1px;
        color: #121212;
        border: 1px dashed #777;
        border-radius: 2px;
        gap: 6px;
    }

    .toplist-footitalia__offer-coupon-code-wrapper:before {
        width: 14px;
        height: 14px;
        content: '';
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='14' viewBox='0 0 15 14' fill='none'%3E%3Cg clip-path='url(%23clip0_17172_13214)'%3E%3Cpath d='M13.5813 0.91875C13.2312 0.6125 12.7937 0.4375 12.3125 0.4375H8.55C8.025 0.4375 7.5 0.65625 7.10625 1.05L1.55 6.60625C1.2 7 0.98125 7.48125 0.9375 7.9625C0.89375 8.4875 1.06875 8.96875 1.41875 9.31875L5.18125 13.0813C5.4875 13.3875 5.925 13.5625 6.40625 13.5625C6.93125 13.5625 7.45625 13.3438 7.85 12.95L13.4062 7.39375C13.8 7 14.0188 6.475 14.0188 5.95L14.0625 2.1875C14.0625 1.70625 13.8875 1.26875 13.5813 0.91875ZM13.1875 5.95C13.1875 6.25625 13.0563 6.5625 12.8375 6.78125L7.28125 12.3375C7.0625 12.5563 6.75625 12.6875 6.45 12.6875C6.1875 12.6875 5.96875 12.6 5.8375 12.425L2.075 8.6625C1.9 8.53125 1.8125 8.26875 1.8125 8.00625C1.8125 7.7 1.94375 7.4375 2.1625 7.21875L7.71875 1.70625C7.9375 1.44375 8.24375 1.3125 8.55 1.3125H12.3125C12.575 1.3125 12.7937 1.4 12.925 1.575C13.1 1.70625 13.1875 1.925 13.1875 2.1875V5.95Z' fill='black'/%3E%3Cpath d='M9.73125 2.71248C9.1625 3.28123 9.1625 4.19998 9.73125 4.76873C9.99375 5.03123 10.3875 5.20623 10.7375 5.20623C11.0875 5.20623 11.4813 5.07498 11.7438 4.76873C12.3125 4.19998 12.3125 3.28123 11.7438 2.71248C11.2625 2.18748 10.3 2.18748 9.73125 2.71248ZM11.175 4.15623C10.9562 4.37498 10.5625 4.37498 10.3875 4.15623C10.125 3.93748 10.125 3.54373 10.3437 3.32498C10.4312 3.23748 10.6062 3.14998 10.7375 3.14998C10.8687 3.14998 11.0437 3.19373 11.1312 3.32498C11.3937 3.54373 11.3937 3.93748 11.175 4.15623Z' fill='black'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_17172_13214'%3E%3Crect width='14' height='14' fill='white' transform='translate(0.5)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
    }

    .toplist-footitalia__offer-info {
        flex-wrap: wrap;
        justify-content: center;
        padding: 0;
        border-top: unset;
        gap: 6px 16px;
    }

    .toplist-footitalia__offer-facts {
        display: contents;
        gap: 16px;
    }

    .toplist-footitalia__offer-fact,
    .toplist-footitalia__offer-payments-wrapper {
        flex: 0 0 auto;
    }

    .toplist-footitalia__offer-fact-head,
    .toplist-footitalia__offer-fact-body,
    .toplist-footitalia__offer-payment-title,
    .toplist-footitalia__offer-payment {
        font-size: 10px;
        line-height: 14px;
        letter-spacing: 0.1px;
    }

    .toplist-footitalia__offer-payments {
        width: 90px;
    }

    .toplist-footitalia__offer-payments-tooltip {
        font-size: 10px;
        line-height: 14px;
        letter-spacing: 0.1px;
    }

    .toplist-footitalia__show-more-btn {
        font-size: 15px;
        line-height: 14px;
        height: 30px;
    }
}
