

@keyframes cms_animation_slide-item-left-right {
    from {
        left: 0;
    }
    50% {
        left: 70%;
    }
    to {
        left: 0;
    }
}

.cms_animation_slide-item-left-right {
    -webkit-animation: cms_animation_slide-item-left-right 2s linear infinite;
    -moz-animation: cms_animation_slide-item-left-right 2s linear infinite;
    -ms-animation: cms_animation_slide-item-left-right 2s linear infinite;
    -o-animation: cms_animation_slide-item-left-right 2s linear infinite;
    animation: cms_animation_slide-item-left-right 2s linear infinite;
}


/*******************************

 Cashback HTML layer

*******************************/

.cms-widget_calculator_result_list_remark .cms_cashback-information img {
    box-shadow: none !important;
    width: 100px;
}

.cms-widget_calculator_result_list_remark .cms_cashback-information_header {
    margin: 0 0 20px 0;
    padding: 0 0 20px 0;
    border-bottom: 1px solid #ccc;
    justify-content: space-between;
    display: flex;
}

.cms-widget_calculator_result_list_remark .cms_cashback-information_header h4 {
    font-size: 24px;
    line-height: 1.2;
    font-weight: bold;
    align-self: center;
}

.cms-widget_calculator_result_list_remark .cms_cashback-information_body {
    margin: 20px 0;
}

.cms-widget_calculator_result_list_remark .cms_cashback-information_steps {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.cms-widget_calculator_result_list_remark .cms_cashback-information_step {
    flex: 1 1 0;
    padding: 50px 20px 0 20px !important;
    position: relative;
    background: none;
}

.cms-widget_calculator_result_list_remark .cms_cashback-information_step::after {
    content: "\e615";
    font-family: "i12font";
    color: #0074A4;
    font-size: 26px;
    font-weight: normal;
    position: absolute;
    right: -10px;
    top: 45%;
}

.cms-widget_calculator_result_list_remark .cms_cashback-information_step:last-of-type::after {
    display: none;
}

.cms-widget_calculator_result_list_remark .cms_cashback-information_step_number,
.cms-widget_calculator_result_list_remark .cms_cashback-information_step_image,
.cms-widget_calculator_result_list_remark .cms_cashback-information_step_copy {
    text-align: center;
}

.cms-widget_calculator_result_list_remark .cms_cashback-information_step_number {
    background-color: #a1a1a1;
    color: #fff;
    border-radius: 100%;
    position: absolute;
    width: 30px;
    height: 30px;
    left: calc(50% - 15px);
    top: 0;
    line-height: 30px;
}

.cms-widget_calculator_result_list_remark .cms_cashback-information_step_copy {
    margin: 20px 0;
}

.cms-widget_calculator_result_list_remark .cms_cashback-information_footer {
    margin: 20px 0 0 0;
    padding: 20px 0;
    border-top: 1px solid #ccc;
}


/* responsive */
@media (max-width: 600px) {
    .cms-widget_calculator_result_list_remark .cms_cashback-information_steps {
        flex-direction: column;
    }

    .cms-widget_calculator_result_list_remark .cms_cashback-information_step {
        margin-bottom: 40px;
    }

    .cms-widget_calculator_result_list_remark .cms_cashback-information_step::after {
        content: "\e617";
        right: 50%;
        top: auto;
        bottom: -30px;
        transform: translateX(50%);
    }
}

@media (min-width: 601px) and (max-width: 1160px) {
    .cms-widget_calculator_result_list_remark .cms_cashback-information_steps {
        flex-wrap: wrap;
    }

    .cms-widget_calculator_result_list_remark .cms_cashback-information_step {
        margin-bottom: 40px;
        flex: 1 0 40%;
    }

    .cms-widget_calculator_result_list_remark .cms_cashback-information_step:nth-of-type(2)::after {
        display: none;
    }
}


@keyframes cms_animation_rotating {
    from {
        transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes cms_animation_rotating {
    from {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}

.cms_animation_rotating {
    -webkit-animation: cms_animation_rotating 1s linear infinite;
    -moz-animation: cms_animation_rotating 1s linear infinite;
    -ms-animation: cms_animation_rotating 1s linear infinite;
    -o-animation: cms_animation_rotating 1s linear infinite;
    animation: cms_animation_rotating 1s linear infinite;
}

