﻿.stepper {
    height: 100%;
    /*    border:10px solid red;/*/
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
    grid-gap: 50px
}

.stepper_logo {
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: initial;
}

.stepper_logo__img {
    height: 30px;
    object-fit: contain
}

.stepper_container {
    display: flex;
    flex-direction: column;
    grid-gap: 30px;
    height: 100%;
    overflow: auto;
}

.step_wrapper {
    display: flex;
    flex-direction: row;
    grid-gap: 10px;
    align-items: center;
    color: #4F4D55;
    cursor: default;
    z-index: 6;
}


.step_wrapper__circle {
    width: 30px;
    height: 30px;
    font-weight: 500;
    border-radius: 50px;
    align-items: center;
    justify-content: center;
    display: flex;
    border: 2px solid #D0D5DE;
    transition:0.5s;
}

.circle_checked {
    background: #0CC975 !important;
    border: 2px solid white !important;
    color: white !important;
}

.text_checked p {
    color: #D0D5DE;

}

.step_wrapper__circle p {
    font-size: 12px;
}


.circle_on {
    color: var(--color-800) !important;
    border: 2px solid var(--color-400) !important;
    background: var(--color-200) !important;
}

.text_on {
    color: var(--color-700) !important;
}


.stepper_bottom {
    height: 100%;
    display: flex;
/*    border: 1px solid red;*/
    flex: 1;
    flex-direction: column;
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    max-height: 300px;
    padding:10px;
}

.box_icons{
/*    border:1px solid blue;*/
    height:100%;
    position:relative;
    overflow:hidden;
}

.box_icons__icon {
    display: flex;
    position: relative;
    height: 100%;
    z-index: 3;
    padding-left: 50px;
    align-items: center;
}

.box_icons__squeared1 {
    background: var(--color-100);
    height: 90%;
    transform: rotate(30deg);
    position: absolute;
    width: 150%;
    right: -10px;
    bottom: -110px;
    z-index: 1;
}

.box_icons__squeared2 {
    background: var(--color-200);
    height: 90%;
    transform: rotate(37deg);
    position: absolute;
    width: 150%;
    right: 20px;
    bottom: -120px;
    z-index: 2;
}

