/* remove rounding from cards, buttons and inputs */
.bg-gradient-primary {
    background-image: linear-gradient(180deg, #36b9cc 10%, #36b9cc 100%)
} /* #36b9cc, #2D99A8  */

.btn-primary {
    color: #fff;
    background-color: #36b9cc;
    border-color: #36b9cc;
}

.btn-primary:hover {
    color: #fff;
    background-color: #2D99A8;
    border-color: #019eb3;
}

.btn-primary:focus {
    color: #fff;
    background-color: #2D99A8;
    border-color: #019eb3;
    box-shadow: 0 0 0 0.2rem rgba(89, 185, 198, 0.5);
}

.btn-primary:not(:disabled):not(.disabled):active {
    color: #fff;
    background-color: #019eb3;
    border-color: #019eb3;
}

.small,
a {
    color: #36b9cc;
}

.text-primary {
    color: #36b9cc !important;
}

a:hover {
    color: #36b9cc;
    text-decoration: underline;
}

.bg-primary {
    background-color: #36b9cc !important;
}

.btn-link, .btn-link:hover {
    color: #36b9cc;
}

/* form-nav */
.progressbar {
    display: flex;
    flex-wrap: wrap;
}

.progressbar .item {
    position: relative;
    width: 25%;
    text-align: center;
    position: relative;
    align-items: center;
    justify-content: center;
    padding: 13px 0;
    line-height: 1.5;
    background: #F5F5F5;
    color: #999999;
}

.progressbar .item:not(:last-child)::before,
.progressbar .item:not(:last-child)::after {
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    left: 100%;
    content: '';
    border: 25px solid transparent;
    border-left: 20px solid #F5F5F5;
    margin: auto;
}

.progressbar .item:not(:last-child)::before {
    margin-left: 1px;
    border-left-color: #FFF;
}

@media screen and (max-width: 767px) {
    .progressbar .item {
        font-size: 11px;
        line-height: 1.4;
        padding: 10px 0;
    }

    .progressbar .item:not(:last-child)::before,
    .progressbar .item:not(:last-child)::after {
        border-width: 18px;
        border-left-width: 12px;
    }
}


/* active */

.progressbar .item.active {
    z-index: 1;
    background: #f3ae00;
    color: #FFF;
}

.progressbar .item.active:not(:last-child)::after {
    border-left-color: #f3ae00;
}

.progressbar .item.active:not(:last-child)::before {
    border-left: none;
}

.block_title {
    background-color: #36b9cc;
    color: #fff;
}

.block_subtitle {
    background-color: #BDEEF4;
    color: dark;
}

.selected_btn, .selected_btn:hover {
    background-color: #f3ae00;
    border-color: #f3ae00;
    color: #fff;
}

.coursebox {
    box-shadow: 3px 3px 3px silver;
}

.course_selected {
    border: 2px solid #f3ae00;
}

.course_selected .block_title {
    background-color: #f3ae00;
}

.couponbox {
    background-color: #fafafa;
    border-radius: 3px;
    border: 1px solid #BDEEF4;
    padding: 2px;
    margin-bottom: 14px;
    box-shadow: 4px 4px 4px silver;
}

.couponbox .form-check-input {
    position: relative;
    margin-left: 0.5rem;
    margin-right: 0.3rem;
}

.spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    z-index: 1050;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}