/**
 * Created by Maatify.dev
 * User: Maatify.dev
 * Time: 15:15 PM
 * https://www.Maatify.dev
 */
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;600&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css');

:root {
    /*--border-radios-btn: 5px;*/
    /*--border-radios-card: 5px;*/
    /*--shadow: rgba(0, 0, 0, 0.18) 0px 0px 4px 0px;*/
    /*--time: 0.3s;*/
    --default-color: #7f00ff;
    --second-color: #bdff00;
    --bg: #0b0b0b;
    /*--border-color: #dfdfdf;*/
    /*--hover-color: #0b000008;*/
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    background-color: var(--bg);
    /*height: 10000px;*/
    overflow-x: hidden;
    text-transform: capitalize;
    color: #fff;
}

a {
    color: #fff;
    text-decoration: none;
}

a:hover {
    color: #fff;
}

.btn {
    padding: 10px 23px;
    border-radius: 6px;
    cursor: pointer;
}

.btn:focus {
    box-shadow: none;
}

input {
    padding: 6px 18px;
}

.ep-btn-second {
    background-color: var(--second-color);
    color: var(--default-color);
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 13px 28px rgba(189, 255, 0, 0.3);
    transition: all 0.3s ease;
}

.ep-btn-second:hover {
    box-shadow: 0 15px 32px rgba(189, 255, 0, 0.5);
    transform: translateY(-5px);
}

.ep-btn-dark {
    background-color: #000;
    color: #fff;
    background-image: linear-gradient(#000, #000),
    linear-gradient(to top left, #7f00ff, black);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.ep-btn-default {
    background-color: var(--default-color);
    color: #fff;
}

.ep-btn-dark:hover {
    background-image: linear-gradient(#000, #000),
    linear-gradient(to top left, #7f00ff, black);
    color: #fff;
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.dropdown-toggle::after {
    content: none
}

.otp-input:focus {
    box-shadow: 0 4px 20px rgba(127, 0, 255, 0.69);
    outline: none;
}

.slider-btn-arrow {
    background: rgba(255, 255, 255, 0.5);
    padding: 8px 13px;
    cursor: pointer;
    border: 1px solid #fff;
    background: none;
    color: #fff;
    border-radius: 60px;
    font-size: 15px;
}
/* form style */

.input-ep-group,textarea-ep-group {
    position: relative;
    padding: 0;
}

.input-ep-group input {
    padding: 14px 18px;
    border: 1px solid #2d2d2d;
    background: #000;
    border-radius: 8px;
    outline: none;
    color: #fff;
    font-size: 1em;
}

.textarea-ep-group textarea {
    padding: 14px 18px;
    border: 1px solid #2d2d2d;
    background: #000;
    border-radius: 8px;
    outline: none;
    color: #fff;
    font-size: 1em;
}

.textarea-ep-group label {
    position: absolute;
    left: 55px;
    top: 14%;
    transform: translateY(-50%);
    color: #6b747c;
    font-size: 1em;
    pointer-events: none;
    transition: 0.5s;
}

.input-ep-group label{
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b747c;
    font-size: 1em;
    pointer-events: none;
    transition: 0.5s;
}

.input-ep-group input:focus ~ label,
.input-ep-group input:valid ~ label,
.textarea-ep-group textarea:focus ~ label {
    top: 0;
    left: 10px;
    font-size: 1em;
    background: #000;
    color: #7f00ff;
    z-index: 7;
    padding: 10px 9px;
}
.textarea-ep-group textarea:focus ~ label {
    top: 10px;
    left: 59px;
}
.input-ep-group input:focus,
.input-ep-group input:valid,
.textarea-ep-group textarea:focus,
.textarea-ep-group textarea:valid {
    background: none;
    box-shadow: none;
}

.form-check-input:checked {
    background-color: var(--default-color);
    border-color: #7f00ff;
}

.form-check-input:focus {
    background-color: var(--default-color);
    border-color: #360266;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgb(55, 2, 105);
}

.form-control:focus {
    color: #fff;
}

.input-ep-group input:focus,
.textarea-ep-group textarea:focus {
    background-color: var(--bg);
    border: 1px solid transparent;
    background-image: linear-gradient(#000000, #0a0a0a), linear-gradient(to top left, #7f00ff, black);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.input-ep-group .icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b747c;
    font-size: 17px;
    pointer-events: none;
    transition: color 0.3s ease;
}

.input-ep-group input:focus ~ .icon {
    color: var(--default-color);
}

.form-check .form-check-input {
    padding: 8px 8px;
}
/* form style */

.modal .modal-content {
    background-color: var(--bg);
    border: 1px solid transparent;
    background-image: linear-gradient(#000000, #0a0a0a), linear-gradient(to top left, #7f00ff, black);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border-radius: 15px;
    overflow: hidden;
}

.modal-header, .modal-footer {
    border-color: #2f2b2b;
    z-index: 1;
}

.modal-dialog.model-lg {
    max-width: 830px;
}
.modal-dialog.model-md {
    max-width: 620px
}

.modal-footer .btn {
    padding: 11px;
    margin: 5px 13px;
}
.modal .modal-body{
    padding: 10px 26px;
}
.modal-header h5 {
    font-weight: bold;
    font-size: 22px;
}

.modal-header .btn-close .close-icon {
    color: #fff;
    font-size: 21px;
}

.btn-close {
    background: none;
}

/* special-offers-g */
.special-offers-g {
    margin-top: 130px;
}

.special-offers-g .header-title h1 {
    margin-bottom: 40px;
}

.special-offers-g .special-offers-card .card-content {
    padding: 15px 10px 3px 12px;
}

.special-offers-g .special-offers-card {
    border: 1px solid transparent;
    border-radius: 10px;
    background-image: linear-gradient(#000000, #0a0a0a), linear-gradient(to top left, #7f00ff, black);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    padding: 0;
    margin-bottom: 60px;
    box-shadow: 0 10px 20px rgba(127, 0, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: center;
    cursor: pointer;
}

.special-offers-g .special-offers-card:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(127, 0, 255, 0.3);
}

.special-offers-g .special-offers-card img {
    width: 120px;
    min-height: 124px;
    transition: all 0.3s ease;
}

.special-offers-g .special-offers-card h4 {
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
}


/* special-offers */
.special-offers {
    margin-top: 130px;
    position: relative;
}

.special-offers-card {
    position: relative;
    z-index: 2;
    background: linear-gradient(#000000, #0a0a0a);
    border-radius: 8px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    box-shadow: 0 0 20px rgba(127, 0, 255, 0.3);
    display: flex;
    overflow: hidden;
    justify-content: center;
    align-items: center;
}

.special-offers-card-wrapper {
    position: relative;
    margin-top: 50px;
    border-radius: 10px;
    overflow: hidden;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
    margin-right: 15px;
}

.special-offers-card-wrapper.hidden {
    opacity: 0;
    transform: translateY(20px);
}

.special-offers::before {
    content: "";
    position: absolute;
    top: 61px;
    right: 174px;
    border-radius: 735px;
    background: #7F00FF6B;
    filter: blur(198px) brightness(25%);
    width: 1330px;
    height: 450px;
    flex-shrink: 0;
    z-index: -4;
}

.special-offers-card-wrapper::before,
.special-offers-card-wrapper::after {
    content: '';
    position: absolute;
    left: -71%;
    top: -78%;
    width: 257%;
    height: 270%;
    background: conic-gradient(#fdd0, rgba(136, 30, 242, 0.85), #0000 50%);
    animation: rotate 4s linear infinite;
}

.special-offers-card-wrapper::after {
    background: conic-gradient(transparent, rgba(127, 0, 255, 0.15), transparent 30%);
    animation-duration: 6s;
    animation-direction: reverse;
}

.special-offers-card-wrapper:hover .special-offers-card {
    transform: scale(0.98);
    box-shadow: 0 0 30px rgba(127, 0, 255, 0.5);
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.special-offers .special-offers-card .special-offers-img img {
    width: 100%;
    min-height: 128px;
    margin-left: auto;
    max-width: 324px;
}

.special-offers .special-offers-card .special-offers-body {
    padding: 13px 5px 19px 11px;
    background: black;
    position: relative;
    z-index: 2;
    transition: background 0.5s ease;
    width: 100%;
}

.special-offers-card:hover .special-offers-body {
    background: #0a0a0a;
}

.special-offers .special-offers-card .special-offers-body h4 {
    font-size: 13px;
    margin-bottom: 20px;
    font-style: oblique;
    text-align: left;
}

.special-offers .special-offers-card .special-offers-body span {
    border-radius: 4px;
    background: var(--default-color);
    padding: 4px 19px;
}


/* special-offers-g */

.header.header-title h1 {
    color: #fff;
    font-weight: 600;
    font-size: 35px;
}

/*.header.header-title h3 {*/
/*    color: #fff;*/
/*    font-weight: 600;*/
/*    font-size: 25px;*/
/*    margin: 30px 0;*/
/*}*/

/* Upload File */
.upload-file {
    text-align: center;
    border: 1px dashed #2d2d2d;
    padding: 35px 10px;
    border-radius: 12px;
    z-index: 1;
    position: relative;
    cursor: pointer;
}

.upload-file .upload-file-icon {
    color: #f8f6f9;
    font-size: 35px;
}

.upload-file .upload-file-text {
    color: #f8f6f9;
    margin-top: 14px;
}

/* Upload File */
/* input Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch-icon {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 11px;
    right: 1px;
    bottom: 4px;
    background-color: #36343b;
    transition: .4s;
    border-radius: 61px;
    border: 2px solid #908c96;
}

.switch-icon:before {
    position: absolute;
    content: "";
    height: 19px;
    width: 19px;
    left: 5px;
    bottom: 4px;
    background-color: #938f99;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .switch-icon {
    background-color: #d0bcff;
    border-color: #d0bcff;
}

input:checked + .switch-icon:before {
    transform: translateX(16px);
    background-color: #381e72; /* Keep #381e72 for enabled state */
}

.switch-label {
    margin-right: 18px;
    font-weight: bold;
}

/* input Switch */
/* Table */


.ep-dark-card-table {
    border: 1px solid transparent;
    border-radius: 13px;
    background-image: linear-gradient(#000000, #0a0a0a), linear-gradient(to top left, #7f00ff, black);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    padding: 0;
    box-shadow: 0 10px 20px rgba(127, 0, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: center;
    cursor: pointer;
}

.ep-dark-card-table .ep-dark-table tbody tr td, .ep-dark-card-table .ep-dark-table tr th {
    color: #fff;
    border-color: #2f2b2b;
}

.ep-dark-card-table .ep-dark-table tbody tr:last-child td {
    border: none;
}

.table > :not(:last-child) > :last-child > * {
    border-color: #2f2b2b;
    padding: 25px 23px 20px 20px;
    font-size: 18px;
}

.ep-dark-card-table .ep-dark-table tbody tr td {
    padding: 15px 10px 18px 18px;
}
span.status {
    padding: 6px 17px;
    border-radius: 5px;
}
span.status.status-enabled{
    background: #137B2C;
}
span.status.status-disabled{
    background: rgba(216, 5, 5, 0.70);
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
