.wizard .steps {
    padding-top: 30px;
    padding-bottom: 30px;
}

.wizard .steps>ul {
    list-style: none;
    padding-left: 0;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#d3caca), to(#d3caca));
    background-image: linear-gradient(#d3caca, #d3caca);
    background-size: calc(100% - 50px) 4px;
    background-repeat: no-repeat;
    background-position: center;
}

.wizard .steps>ul li a {
    display: inline-block;

    border: 1px solid #d3caca;
    border-radius: 50px;
}


.wizard .steps>ul li span.number {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 50%;
    background-color: #d3caca;
    text-align: center;
    line-height: 50px;
    color: #fff;
}

.wizard .steps>ul li.current span.number, .wizard .steps>ul li.done span.number {
    background-color: var(--theme-color);
}

.wizard .content {
    margin-bottom: 45px;
}

.wizard .content .bd-wizard-step-title {
    font-size: 20px;
    font-weight: bold;
    color: #d3caca;
    margin-bottom: 45px;
}



.wizard .actions>ul {
    list-style: none;
    padding-left: 0;
    display: -webkit-box;
    display: flex;
}

.wizard .actions li a {
    display: inline-block;
    border-radius: 6px;
    background-color: var(--theme-color);
    ;
    padding: 16px 30px;
    color: #fff;
    font-style: 15px;
    font-weight: bold;
}

.wizard .actions li.disabled {
    display: none;
}

.wizard .actions li:not(.disabled)+li, .wizard .actions li:not(:first-child):last-child {
    margin-left: 15px;
}

@media (min-width: 768px) {
    .wizard.vertical {
        padding-left: 200px;
        position: relative;
        min-height: 450px;
    }

    .wizard.vertical .steps {
        padding-top: 0;
        padding-bottom: 0;
        min-height: 480px;
        position: absolute;
        left: 0;
        display: -webkit-box;
        display: flex;
    }

    .wizard.vertical .steps>ul {
        width: 50px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        background-size: 4px calc(100% - 50px);
        margin-bottom: 0;
    }

    .wizard.vertical .steps>ul li:not(:last-child) {
        margin-bottom: 24px;
    }
}

.fadeIn-bottom {
    top: 80%
}
.actions_buttons button:last-child {
    margin-left: 50px;
}
.actions_buttons .disabled {

    border: 1px solid #ebedf0a8;
    background: #b1b1b3 !important;
}
.actions_buttons {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: flex-end;
}

.active_content img {
    filter: brightness(33%);
}
.active_content .card-details {
    top: 50%;
    left: 50%;
    z-index: 1;
    filter: brightness(100%);
    opacity: 1
}
.box-card-div {
    border-radius: 4px;
    margin: 40px;
    display: flex;
    justify-content: center;
    background: #E6E6E6;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    box-shadow: 0 0 5px #999;
    cursor: pointer;

}
.box-card-div:hover {
    background-color: var(--theme-color);
}
.active_content {
    background-color: var(--theme-color);
}

.box-card-div :hover,
.active_content h6 {
    color: white;

}

.box-card-div h6 {
    padding-top: 16px;
}


.card-content {
    position: relative;
    width: 100%;
    margin: auto;
    overflow: hidden;
    margin-bottom: 50px;
}

.card-content .content-overlay {
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    height: 99%;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s
}

.card-content:hover .content-overlay {
    opacity: 1;
}

.card-image {
    width: 100%;
    /* height: 100%; */
    height: 150px;
    box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.1);
    border-radius: 5px
}

#dates-2 {
    margin-bottom: 50px
}

.card-details {
    position: absolute;
    text-align: center;
    padding-left: 1em;
    padding-right: 1em;
    width: 100%;
    top: 50%;
    left: 50%;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s
}

.card-content:hover .card-details {
    top: 50%;
    left: 50%;
    opacity: 1
}

.card-details p {
    color: #fff;
    font-size: 0.8em
}
