﻿.pull-right {
    float: right;
}

.arrow-steps{
	display: flex;
}

.arrow-steps .step {
    font-size: 14px;
    text-align: center;
    color: #666;
    color: white;
    cursor: default;

    padding: 10px 10px 10px 30px;
    float: left;
    position: relative;
    background-color: #d9e3f7;
    background-color: gray;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: background-color 0.2s ease;
    width: 100%;
}

    .arrow-steps .step:after,
    .arrow-steps .step:before {
        content: " ";
        position: absolute;
        top: 0;
        right: -17px;
        width: 0;
        height: 0;
        border-top: 20px solid transparent;
        border-bottom: 20px solid transparent;
        border-left-: 17px solid #d9e3f7;
        border-left: 17px solid gray;
        z-index: 2;
        transition: border-color 0.2s ease;
    }
	
	.arrow-steps .step + .step {
		margin-left: 1px;
	}
	
    .arrow-steps .step:before {
        right: auto;
        left: 0;
        border-left: 17px solid #fff;
        z-index: 0;
    }

    .arrow-steps .step:first-child:before {
        border: none;
    }

    .arrow-steps .step:first-child {
        border-top-left-radius: 4px;
        border-bottom-left-radius: 4px;
    }

    .arrow-steps .step:last-child {
        border-top-right-radius: 4px;
        border-bottom-right-radius: 4px;
    }

        .arrow-steps .step:last-child span:after {
            border-right: 0px;
        }

    .arrow-steps .step span {
        position: relative;
    }

        .arrow-steps .step span:before {
            opacity: 0;
            content: "✔";
            position: absolute;
            top: -2px;
            left: -20px;
        }

    .arrow-steps .step.done span:before {
        opacity: 1;
        -webkit-transition: opacity 0.3s ease 0.5s;
        -moz-transition: opacity 0.3s ease 0.5s;
        -ms-transition: opacity 0.3s ease 0.5s;
        transition: opacity 0.3s ease 0.5s;
    }

    .arrow-steps .step.current {
        color: #fff;
        background-color: #aa985a;
    }

        .arrow-steps .step.current:after {
            border-left-: 17px solid #aa985a;
            border-left: 17px solid #aa985a;
        }

.step-last:after {
    border-top: 0px solid transparent !important;
    border-bottom: 0px solid transparent !important;
}

.step-last span {
    padding-right: 16px;
    padding-left: 1px;
}

@media (max-width: 646px) {
    .arrow-steps .step {
        min-width: 23.5%;
    }
}

@media (max-width: 446px) {
    .arrow-steps .step {
        min-width: 23.0%;
    }
}
@media (max-width: 346px) {
    .arrow-steps .step {
        min-width: 22.0%;
    }
}
@media (max-width: 316px) {
    .arrow-steps .step {
        min-width: 80px;
        display: inline-block;
    }
}