.bold,
.check {
    font-weight: 700
}

#imgPreview,
#imgPreview.default,
.check-mark.selected .check {
    display: block
}

.content {
    display: flex;
    align-items: center;
    justify-content: center
}

.steps-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 400px;
    width: 100%
}

.steps-container .steps {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    position: relative
}

.steps .circle {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    color: #999;
    font-size: 22px;
    font-weight: 500;
    border-radius: 50%;
    background: #fff;
    border: 4px solid #e0e0e0;
    transition: .2s
}

.steps .circle.active {
    transition-delay: 0.1s;
    border-color: #e10023;
    color: #e10023
}

.steps .progress-bar {
    position: absolute;
    height: 4px;
    width: 100%;
    background: #e0e0e0;
    z-index: -1
}

.progress-bar .indicator {
    position: absolute;
    height: 100%;
    width: 0%;
    background: #e10023;
    transition: .3s;
    left: 0;
    max-width: 99%
}

.p2 {
    padding: .5rem !important
}

.mx2 {
    margin-right: .5rem !important;
    margin-left: .5rem !important
}

.back-btn,
.next-btn {
    padding: 1rem 1.5rem;
    border-radius: 7px;
    margin-left: 20px;
    margin-right: 20px;
    color: #fff;
    text-align: center;
    cursor: pointer
}

.next-btn {
    background: #ff1a44;
    transition: .3s
}

.back-btn {
    background: #707070
}

@media (min-width:1220px) {

    .back-btn,
    .next-btn {
        padding: 2rem 5rem
    }
}

@media (min-width:780px) {
    .w-30 {
        width: 360px
    }

    .h-400 {
        height: 400px
    }
}

.back-btn:active:focus,
.back-btn:focus,
.next-btn:active:focus,
.next-btn:focus {
    outline: 0;
    color: #fff
}

.step-button:hover {
    color: #fff
}

.cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

.custom-card {
    width: 350px;
    margin: 20px;
    padding: 15px;
    border-radius: 4px;
    cursor: pointer
}

.card-image {
    border-radius: 7px
}

.position-relative {
    position: relative
}

.custom-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px
}

.check-mark {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #fff
}

.check {
    color: #ff1a44;
    font-size: 3rem;
    position: absolute;
    top: 0;
    left: 10px;
    display: none
}

.card-content {
    margin-top: .25rem !important;
    justify-content: center !important;
    position: relative !important
}

.card-title {
    margin: 1rem 0
}

.preview-catalog {
    width: 100%;
    text-align: center;
    background: #ff1a44;
    border-radius: 7px;
    padding: .5rem;
    color: #fff;
    font-weight: 700;
    font-size: 17px
}

.text-color {
    color: #212529
}

.hidden {
    display: none !important
}

.uploader {
    position: relative;
    overflow: hidden;
    width: 200px;
    height: 200px;
    border: 2px dashed #ccc;
    border-radius: 8px;
    cursor: pointer
}

.custom-btn,
.custom-input {
    height: 40px !important
}

#imgPreview {
    max-width: 100%;
    max-height: 100%;
    margin: auto
}

#imgPreview.preview {
    display: none
}

.input-group-container {
    max-width: 80%;
    margin: 0 auto
}

.custom-btn {
    background-color: #ff1a44;
    border-color: #e10023;
    color: #fff
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}