#qr-function-card {
    display: none;
}

#qr-naming-card {
    display: none;
}

.no-sense-margin-bottom {
    margin-bottom: 100px !important;
}

.no-sense-margin-top {
    margin-top: 100px !important;
}

.form-checkbox-qcall .form-check-input:checked,
.form-radio-qcall .form-check-input:checked {
    background-color: #ec4c32;
    border-color: #ec4c32;
}

.uppercase-text {
    text-transform: uppercase;
}

.buttonBox {
    button {
        width: 150px;
        font-weight: 500;

        transition: background-color 0.3s ease;
    }

    button:hover {
        background-color: #ec4c32;
    }

    button:active {
        transform: translateY(4px);
    }
}

#qrFunctionAddButton {
    width: 200px;

    transition {
        background-color: 0.3s;
        transform: 0.3s;
    }

    &:hover {
        background-color: #ec4c32;
    }

    &:active {
        transform: translateY(4px);
    }
}

#qrFunctionSaveButton {
    width: 150px;

    transition {
        background-color: 0.3s, transform 0.3s;
    }

    &:hover {
        background-color: #ec4c32;
    }

    &:active {
        transform: translateY(4px);
    }
}

#qrCodePreviewBtn {
    width: 150px;

    transition {
        background-color: 0.3s;
        transform: 0.3s;
    }

    &:hover {
        background-color: #ec4c32;
    }

    &:active {
        transform: translateY(4px);
    }
}

#qrCodeEditPreviewBtn {
    width: 150px;

    transition {
        background-color: 0.3s;
        transform: 0.3s;
    }

    &:hover {
        background-color: #ec4c32;
    }

    &:active {
        transform: translateY(4px);
    }
}

#btnNext {
    width: 150px;

    transition {
        background-color: 0.3s, transform 0.3s;
    }

    &:hover {
        background-color: #ec4c32;
    }

    &:active {
        transform: translateY(4px);
    }
}

#btnPrevious {
    width: 150px;

    transition {
        background-color: 0.3s;
        transform: 0.3s;
    }

    &:hover {
        background-color: #ec4c32;
    }

    &:active {
        transform: translateY(4px);
    }
}

#btnSave {
    width: 150px;

    transition {
        background-color: 0.3s;
        transform: 0.3s;
    }

    &:hover {
        background-color: #ec4c32;
    }

    &:active {
        transform: translateY(4px);
    }
}

#download {
    width: 150px;

    transition {
        background-color: 0.3s;
        transform: 0.3s;
    }

    &:hover {
        background-color: #ec4c32;
    }

    &:active {
        transform: translateY(4px);
    }
}

.modal-label {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 0.8rem;
    text-transform: capitalize;
}

#divQRDesignEditTemplate {
    display: none;
}

.select2-container--default .select2-selection--multiple {
    padding: 0.45rem 0.9rem;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.5;
}

.select2-container .select2-search--inline .select2-search__field {
    margin: 0;
    position: relative;
    top: -3px;
}

.select2-container .select2-selection--multiple .select2-selection__choice {
    margin: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    margin: 0;
    margin-right: 5px;
    background-color: #ec4c32;
    color: #f9f9f9;
    border: 1px solid #ec4c32;
    margin-bottom: 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    background-color: #ec4c32;
    color: #f9f9f9;
    border-right: 1px solid #ec4c32;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    background-color: #ec4c32;
    color: #f9f9f9;
    border-right: 1px solid #ec4c32;
}

.select2-container--default .select2-results__option .select2-results__option:hover {
    background-color: #ec4c32;
    color: #f9f9f9;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #ec4c32;
    color: #f9f9f9;
}

.select2-container.select2-container--default.select2-container--open {
    z-index: 2000;
}

#qrCodeBasicPreview {
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
    margin: auto;
    padding: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

#qrCodeEditPreview {
    height: 800px;
    display: flex;
    justify-content: center;
}

.qr-template-container {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-auto-flow: dense;
}

.template-item {
    background-color: #f9f9f9;
    padding: 30px;
    cursor: pointer;
    grid-column: span 2;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.1);
}

.template-item img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}

.qrCode {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    padding: 10px;
}

.download-container {
    height: 650px;
    display: flex;
    justify-content: center;
}

.downloadBox {
    display: inline-table;
    margin-bottom: 1.5rem;
}

div.dropdown-keyword-input-area {
    p.dropdown-keyword {
        background: #cccccc;
        border-radius: 5px;
        display: inline-block;
        margin: 2px 4px 4px 2px;
        padding: 3px;

        a.dropdown-delete {
            cursor: pointer;
            margin: 0 2px;
        }
    }
}

div.email-input-area {
    p.email-keyword {
        background: #cccccc;
        border-radius: 5px;
        display: inline-block;
        margin: 2px 4px 4px 2px;
        padding: 3px;

        a.email-delete {
            cursor: pointer;
            margin: 0 2px;
        }
    }
}

.custom-ribbon {
    position: absolute !important;
    right: -7px !important;
    margin-right: 0 !important;
}

.pricing__price {
    color: #000;
    position: relative;
    display: flex;
    height: 110px;
    margin-bottom: 24px;
    padding-bottom: 36px;
    border-bottom: 2px solid rgba(106, 62, 232, 0.1);
    justify-content: center;
}

.pricing__currency {
    color: #000;
    position: relative;
    top: 4px;
    font-size: 24px;
    line-height: 1.33333;
    font-weight: 600;
}

.pricing__number {
    font-size: 55px;
    line-height: 1.125;
    font-weight: 600;
}

.pricing__time {
    position: relative;
    top: -7px;
    align-self: flex-end;
    color: #6e757c;
}

.pricing__duration {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    align-items: center;
}

.pricing__duration__text {
    color: #6e757c;
}

.pricing__duration__wrapper {
    border: 1px solid #d9d9d9;
    border-radius: 30px;
    margin-left: 30px;
    padding: 20px 0;
    transition: all 0.2s;
}

@media only screen and (max-width: 767px) {
    .pricing__duration__wrapper {
        margin-left: 10px;
    }
}

.pricing__duration__wrapper span {
    font-size: 14px;
    padding: 15px 30px;
    border: 1px solid transparent;
    border-radius: 30px;
    margin: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.pricing__duration__wrapper span:last-child {
    margin-left: 0;
}

@media only screen and (max-width: 767px) {
    .pricing__duration__wrapper span {
        margin: 5px;
        padding: 15px 10px;
    }
}

.pricing__duration__wrapper span.active {
    background-color: #2c353d;
    color: #ffffff;
}

.linethrough {
    text-decoration: line-through;
}

.toast {
    position: fixed;
    top: 80px;
    right: 60px;
    z-index: 1060;
}

.toast.hide {
    display: none !important;
}

/* Brand Color */

.brand-color-green {
    background-color: #42ba96;
    border: 1px solid #42ba96;
    color: #fff;
}

.brand-color-red {
    background-color: #df4759;
    border: 1px solid #df4759;
    color: #fff;
}

.brand-color-yellow {
    background-color: #fad776;
    border: 1px solid #fad776;
    color: #000;
}

.select2-container--default .select2-results__option[aria-selected='true']:hover {
    background-color: #ec4c32 !important;
}

.hidden {
    display: none !important;
}

#notification-modal .modal-content,
#confirmation-modal .modal-content {
    border: 0;
    background: #fff;
}

#notification-modal .btn,
#confirmation-modal .btn {
    font-weight: 500;
}

#confirmation-modal .modal-footer {
    display: flex !important;
    gap: 12px;
}

#confirmation-modal .modal-footer .btn {
    flex: 1;
}
