a:focus, input:focus, textarea:focus, select:focus, button:focus {
    outline: none !important;
    box-shadow: none !important;
}

.error-message {
    display: flex;
    align-items: center;
    color: #aa0000;
    font-size: 14px;
    font-weight: 400;
    min-height: 1.5rem;
}

.spinner-border.purple {
    color: #707BFF;
}

.form-check-input {
    min-width: 22px !important;
    width: 22px !important;
    height: 22px !important;
    margin: 0 10px 0 -1.5em !important;
}

.form-check-input::before {
    content: none !important;
}

.form-check-input:checked {
    background-image: var(--bs-form-check-bg-image) !important;
    background-color: #707BFF;
    border-color: #5f69db;
}

.vue-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: #fff;
    border: 2px solid #fff;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.vue-card-row {
    flex-direction: row;
}

.vue-card-icon {
    width: 48px !important;
    height: 48px !important;
    margin-right: 15px;
}

.vue-card.active {
    border: 2px solid #5f69db;
    background-color: #d9e6ff;
    box-shadow: 0 5px 30px 0 rgba(67, 0, 184, 0.2);
}

.vue-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    line-height: 1.2em;
    margin-bottom: 5px;
}

.vue-card-subtitle {
    font-size: 17px;
    font-weight: 400;
    color: #000;
}

.vue-card-text {
    font-size: 16px;
    font-weight: 400;
    color: #aaa;
}

.vue-card.active .vue-card-text, .vue-card.active .vue-card-title, .vue-card.active .vue-card-subtitle {
    color: #4054B2;
}

.vue-card-chips {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    margin: 5px 0;
}

.vue-card-chips span {
    font-size: 13px;
    font-weight: 500;
	line-height: 1.2;
}

.line-through-text {
    position: relative;
}

.line-through-text:before {
    content: "";
    border-bottom: 2px solid #f00;
    position: absolute;
    width: 100%;
    height: 60%;
    transform: rotate(-8deg);
}

.vue-card.active .line-through-text:before {
    border-bottom: 2px solid #4054B2;
}

.offer-html {
    background-color: #fff;
    height: 400px;
    padding: 15px;
    overflow-y: auto;
    user-select: none;
}

.cursor-pointer {
    cursor: pointer !important;
}

@media (max-width: 768px) {
    .vue-card-text {
        font-size: 13px;
    }
}