.position-relative {
    position: relative;
}

.d-inline-block {
    display: inline-block;
}

.order-1 {
    order: 1;
}

.order-2 {
    order: 2;
}

@media only screen and (min-width: 992px) {
    .order-md-1 {
        order: 1;
    }
    
    .order-md-2 {
        order: 2;
    }
}

.img-border-primary {
    position: relative;
    border: 3px solid #93c83f;
    padding: 1rem;
    z-index: 100;
    background-color: white;
}
.img-border-bismark {
    position: relative;
    border: 3px solid #496a8a;
    padding: 1rem;
    z-index: 100;
    background-color: white;

}

.stepline {
    margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    height: 3px;
    background-color: #93c83f;
    z-index: 2;
  }
.stepline::after {
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: -1rem;
    font: normal normal normal 14px/1 FontAwesome;
    content: "\f0da";
    font-size: 3rem;
    color: #93c83f;
}

.list-dismarked li:before {
    position: absolute;
    top: 1px;
    left: 0;
    content: '\e007';
    font-family: "fl-flat-icons-set-2";
    display: inline-block;
    margin-right: 11px;
    font-size: 13px;
    line-height: inherit;
    vertical-align: middle;
    color: red;
  }

.col {
    display: inline-block;
    padding: 5px 10px 0px 0px;
}  

.col-logo {
    display: inline-block;
    margin: 15px 5px 0px 0px;
} 
.col-logo img {
    height: 30px;
    margin: 5px;
}

.bg-white {
    background-color: #ffffff;
}

.text-white {
    color: #ffffff;
    transition: .33s all ease-out;
}
a:hover .text-white {
    color: #93c83f;
}

.padding-5 {
    padding: 5px;
}

/*
.icon-box-bismark:before, .icon-box-bismark:after {
    content: '';
    position: absolute;
    width: calc(100% - 35px);
    height: calc(100% - 35px);
    border: 1px solid #496a8a;
    pointer-events: none;
    transition: .33s all ease;
  }

.icon-box-bismark:before {
    top: 0;
    left: 0;
    border-width: 1px 0 0 1px;
  }
  
  .icon-box-bismark:after {
    bottom: 0;
    right: 0;
    border-width: 0 1px 1px 0;
  }
  */