// .guarantees__list {
//     display: grid;
//     grid-template-columns: repeat(2, 2fr);
//     grid-gap: 1rem;
//     margin: 0;
// }

.guarantees__item::after {
    content: "";
    width: 10px;
    height: 10px;

    border-radius: 50%;
    position: absolute;
    right: 0.75rem;
    top: 0.75rem;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s ease-out;
}

.guarantees__item {
    color: #496475;
    // display: flex;
    align-items: center;
    background: #fff;
    box-shadow: 0 10px 35px 0 rgba(42, 75, 90, 0.18);

    border-radius: 8px;
    transition: all 0.2s ease;
    position: relative;
    padding: 1.4rem 1rem;
}

.guarantees__item.active,
.guarantees__item:hover {
    background: #f0f6ff;
    box-shadow: 0;
    transform: translateY(-2px);
}

.guarantees__item img {
    max-width: 100px;
}

.guarantees__item .icon-main {
    background-color: transparent;

    /* Old browsers */
    background-image: -moz-linear-gradient(180deg, #a64eee 0%, #3c35ce 100%);
    /* FF3.6-15 */
    background-image: -webkit-linear-gradient(180deg, #a64eee 0%, #3c35ce 100%);
    /* Chrome10-25,Safari5.1-6 */
    background-image: linear-gradient(180deg, #a64eee 0%, #3c35ce 100%);

    width: 30px;
    height: 30px;
    line-height: 30px;
    padding:10px;
    color: #fff;

    
    -moz-transition: all 0.5s ease;
    -webkit-border-radius: 50%;
    -webkit-box-shadow: 8px 8px 30px 0px rgba(1, 96, 231, 0.3);

    position: relative;
    overflow: hidden;
    margin-right: 20px;
}

.guarantees__item .icon-img {
    padding: 7px;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

html[dir='rtl'] {

    .guarantees__item .icon-main {
        margin-left: 20px;
    }

    .guarantees__item::after { 
        left: 0.75rem;
        right:0 !important;
    }

    .guarantees__item .icon-img {
        right: 0;
       
    }

}

// html[dir='rtl'] .guarantees__item .icon-main {
//     margin-left: 20px;
// }

// html[dir='rtl']  .guarantees__item::after { 
//     left: 0.75rem;
//     right:0 !important;
// }

// html[dir='rtl']  .guarantees__item .icon-img {
//     right: 0;
   
// }