:root {
    --orange: #FF4545;
    --dark: #333333;
    --white: #ffffff;
    --black: #000;
    --gray: #F4F4F4;
}


.text-orange,
a.text-orange:hover {
    color: var(--orange);
}

.btn-orange {
    background: var(--orange);
    border: 1px solid var(--orange);
    color: var(--white);
    border-radius: 30px;
}

.btn-orange:hover {
    color: var(--orange);
    background: var(--white);
    border: 1px solid var(--orange);
}

.btn-border-orange {
    border-radius: 30px;
    background: var(--white);
    border: 1px solid var(--orange);
    color: var(--black);
}

.btn-border-orange:hover {
    color: var(--white);
    background: var(--orange);
    border: 1px solid var(--orange);
}

.sonaliza-tabs .nav {
    padding: 12px 16px;
    background: #FBEEEE;
    display: inline-flex;
    border-radius: 50px;
}

.sonaliza-tabs .nav .nav-item .nav-link {
    border-radius: 50px;
    padding-inline: 15px;
    color: var(--dark);
    min-width: 170px;
}

.sonaliza-tabs .nav .nav-item .nav-link.active {
    background: var(--orange);
    color: var(--white);
}

/* Start Plans */

.plans-area {
    background: linear-gradient(180deg, #FFFFFF 0%, #FFEDED 100%);
}

.price-card {
    background: var(--white);
    border-radius: 30px;
    border: 1px solid #FFD9D9;
    padding: 24px;
    color: #404040;
}

.price-card.active {
    padding-bottom: 68px;
}

.price-card .plane {
    color: var(--orange);
    font-size: 22px;
    font-weight: 600;
}

.price-card .price {
    font-size: 48px;
    line-height: 1.5em;
    font-weight: 600;
}

.price-card .recommended {
    display: flex;
    justify-content: flex-end;
}

.price-card .recommended span {
    background: #ffc107;
    padding: 2px 13px;
    border-radius: 20px;
    color: #000;
    font-size: 14px;
}

.price-card a.link {
    background: var(--orange);
    color: var(--white);
    display: block;
    padding: 8px 16px;
    border-radius: 30px;
    text-align: center;
    font-size: 18px;
    margin-block: 30px;
}

.price-card ul.features {
    padding: 0;
    list-style: none;
    margin-bottom: 30px;
}

.price-card .features li {
    padding: 12px 16px;
    border-bottom: 1px solid #ECECEC;
}

.price-card .features li i {
    color: #ffc107;
    margin-inline-end: 8px;
}

@media only screen and (max-width: 768px) {
    .price-card {
        margin-bottom: 30px;
    }

    .sonaliza-tabs .nav .nav-item .nav-link {
        min-width: 150px;
    }
}

/* End Plans */

/* Start Checkout */
.checkout-page .big-price {
    font-size: 64px;
    font-weight: 600;
    line-height: 1em;
    color: #404040;
}

.checkout-page .big-price span {
    font-size: 18px;
    font-weight: 400;
}

.checkout-page .selected-plane {
    background: var(--gray);
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
}

.checkout-page .checkout-details {
    margin-bottom: 16px;
}

.checkout-page .checkout-details li {
    display: flex;
    justify-content: space-between;
    padding: 16px;
    border-bottom: 1px solid #ECECEC;
    color: #000000;
}

.checkout-page .card {
    background: var(--gray);
    padding: 24px 24px 12px;
    border: 0;
    margin-bottom: 16px;
    border-radius: 16px;
}

.checkout-page .card .card-title {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 16px;
}

.checkout-page .order-button-payment .fill-btn {
    border-radius: 60px;
    background: var(--orange);
    border: 0;
    height: 50px;
    line-height: 50px;
}

.custom-input .checkout-form-list input[type=text],
.custom-input .checkout-form-list input[type=password],
.custom-input .checkout-form-list input[type=email],
.custom-input .country-select .nice-select {
    height: 44px;
    line-height: 44px;
    border-radius: 40px;
}

.custom-input .checkout-form-list {
    margin-bottom: 16px;
}

/*-------------*/

.custom-switch {
    display: flex;
    gap: 12px;
    align-items: center;
    user-select: none;
}


.custom-switch .switch-wrap {
    cursor: pointer;
    padding: 4px 6px;
    width: 48px;
    height: 26px;
    border-radius: 33.5px;
    position: relative;
}

.custom-switch .switch-wrap input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.custom-switch .switch {
    height: 100%;
    display: grid;
    grid-template-columns: 0fr 1fr 1fr;
    transition: 0.2s;
}

.custom-switch .switch::after {
    content: "";
    border-radius: 50%;
    background: #fff;
    grid-column: 2;
    transition: background 0.2s;
    z-index: 1;
}

.custom-switch .switch::before {
    content: '';
    inset: 0;
    background: #D9D9D9;
    border-radius: 30px;
    position: absolute;
}

.custom-switch input:checked+.switch {
    grid-template-columns: 1fr 1fr 0fr;
}

.custom-switch input:checked+.switch::before {
    background: var(--orange);
}

@media only screen and (max-width: 560px) {
    .checkout-page .selected-plane {
        flex-direction: column;
        gap: 16px;
    }

    .checkout-page .big-price {
        font-size: 48px;
    }
}

/* End Checkout */

/* Start Dashboard */
.dashboard-page {
    display: flex;
    gap: 16px;
    padding-inline: 32px;
    background: #fafafa;
}

.dashboard-page .dashboard-content {
    flex-grow: 1;
    max-width: 100%;
}

.dashboard-page .dashboard-asidebar {
    flex: 0 0 300px;
    max-width: 300px;
    background: var(--white);
    border: 1px solid #EFEFEF;
    border-radius: 8px;
    padding: 16px;
}

.dashboard-page .dashboard-asidebar .stats {
    display: flex;
    justify-content: space-between;
    padding-block: 16px;
    border-top: 1px solid #EAEAEA;
    border-bottom: 1px solid #EAEAEA;
}

.dashboard-page .dashboard-asidebar .stats .item {
    line-height: 15px;
    font-weight: 300;
    /* color: var(--gray); */
    text-align: center;
    font-size: 14px;
    padding-inline: 12px;
}

.dashboard-page .dashboard-asidebar .stats .item span {
    display: block;
    font-weight: 500;
    color: var(--dark);
    font-size: 20px;
    margin-bottom: 12px;
}

.ordars-menu li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #EAEAEA;
    padding: 16px;
    color: #000;
}

.ordars-menu li:last-child {
    border-bottom: 1px solid #EAEAEA;
}

.ordars-menu li .icon {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #C5C5C5;
}

.ordars-menu li .num {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid var(--orange);
    background: #FFEDED;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.help-menu li {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 4px;
}

.help-menu li:last-child {
    margin: 0;
}

.help-menu li a {
    background: #F5F5F5;
    padding: 16px;
    color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.help-menu li a i {
    color: var(--orange);
}

.dashboard-page .dashboard-asidebar .action {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
}

.dashboard-page .dashboard-asidebar .edit-btn {
    padding: 8px 16px;
    text-align: center;
    width: 100%;
    border-radius: 40px;
    border: 1px solid var(--orange);
    display: block;
    font-size: 16px;
    color: #000;
    transition: all ease 0.3s;
}

.dashboard-page .dashboard-asidebar .edit-btn:hover {
    background: var(--orange);
    color: var(--white);
}

.dashboard-page .dashboard-asidebar .delete-btn {
    padding: 8px 16px;
    text-align: center;
    width: 100%;
    border-radius: 40px;
    display: block;
    color: #000;
    font-size: 16px;
    transition: all ease 0.3s;
}

.dashboard-page .dashboard-asidebar .delete-btn i {
    transition: all ease 0.3s;
    color: #717171;
    margin-inline-end: 8px;

}

.dashboard-page .dashboard-asidebar .delete-btn:hover,
.dashboard-page .dashboard-asidebar .delete-btn:hover i {
    color: red;
}

.custom-datatable-style-wrapper {
    background: var(--white);
    position: relative;
    padding: 16px;
    border: 1px solid #EFEFEF;
    border-radius: 8px;
}

.custom-datatable-style-wrapper .card-title-position {
    position: absolute;
    top: 22px;
    left: 15px;
}

.custom-datatable-style-wrapper .card-title {
    font-size: 24px;
    color: #404040;
}

.custom-datatable-style-wrapper .dt-buttons .custom-btn.dt-button {
    outline: none;
    border: 1px solid var(--orange);
    background: var(--orange);
    color: var(--white);
    border-radius: 30px;
    width: 150px;
    font-weight: 500;
    margin-bottom: 15px;
    height: 40px;
}

.custom-datatable-style-wrapper .dt-buttons .custom-btn.dt-button:hover {
    border: 1px solid var(--orange) !important;
    background: var(--white) !important;
    color: var(--orange) !important;
}

.custom-datatable-style-wrapper .dt-search label {
    display: none;
}

.custom-datatable-style-wrapper .dt-search .form-control {
    height: 40px;
    width: 300px;
    border-radius: 30px;
    background: var(--gray);
    border: 1px solid var(--gray);
    padding-inline: 20px;
    outline: none !important;
    box-shadow: none !important;
}

.custom-datatable-style-wrapper .dt-search .form-control:focus {
    border-color: var(--orange);
}


.dashboard-page .custom-table-style {
    background: var(--white);
    /* margin-left: -16px;
    margin-right: -16px;
    width: calc(100% + 32px); */
}

.dashboard-page .custom-table-style thead th {
    text-transform: uppercase;
    color: var(--black);
    opacity: 40%;
    font-weight: 500;
    font-size: 12px;
    border: 0;
}

.dashboard-page .custom-table-style tbody>tr:nth-of-type(odd) {
    background: #f8f8f8;
}

.dashboard-page .custom-table-style tbody tr td {
    font-size: 14px;
    color: var(--black);
    border: 0;
    box-shadow: none !important;
    background: none;
    white-space: nowrap;
}

.dashboard-page .dt-scroll-body {
    border: 0 !important;
}

.dashboard-page .custom-table-style.table>:not(:last-child)>:last-child>* {
    border: 0 !important;
}

.dashboard-page .custom-table-style tbody tr td .action {
    display: flex;
    gap: 12px;
    justify-content: end;
    /* width: 120px; */
}

.dashboard-page .custom-table-style tbody tr td .action li a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-page .custom-table-style .badge {
    border-radius: 30px;
    font-size: 14px;
    font-weight: 400;
    border: 1px solid;
    padding: 5px 20px;
    color: var(--black);
}

.dashboard-page .custom-table-style .badge.yellow {
    border: 1px solid rgba(255, 199, 0, 1);
    border-color: rgba(255, 199, 0, 1);
}

.dashboard-page .custom-table-style .badge.green {
    background: rgba(224, 255, 237, 1);
    border-color: rgba(56, 182, 91, 1);
}

.dashboard-page .custom-table-style .badge.blue {
    background: rgba(242, 250, 255, 1);
    border-color: rgba(0, 163, 255, 1);
}

.dashboard-page .custom-table-style .badge.red {
    background: rgba(255, 230, 224, 1);
    border-color: rgba(255, 69, 69, 1)
}

.datatable-filter {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.datatable-filter li a {
    border-radius: 30px;
    text-align: center;
    background: #F5F5F5;
    border: 1px solid #F5F5F5;
    color: var(--black);
    padding: 5px 20px;
    display: block;
}

.datatable-filter li a.active {
    background-color: #ffeded;
    border-color: var(--orange);
}

#orders-chart-container {
    position: relative;
    margin: auto;
    /* width: 100%;
    max-width: 300px;
    max-height: 300px; */
    width: 300px;
    height: 300px;
}

#orders-chart-container canvas {
    position: relative;
    z-index: 1;
}

#orders-chart-container #text {
    position: absolute;
    top: 38%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    font-weight: bold;
    color: #333;
    z-index: 2;
    pointer-events: none;
}


.dashboard-card {
    padding: 16px;
    background: var(--white);
    border: 1px solid #EFEFEF;
    border-radius: 8px;
    height: 100%;
}

.dashboard-card .card-title {
    font-size: 24px;
    color: #404040;
    margin: 0;
}

.dashboard-card hr {
    width: calc(100% + 32px);
    margin-left: -16px;
    margin-right: -16px;
    background-color: #DDDDDD;
}

.dashboard-card .stats {
    display: flex;
    justify-content: space-around;
    padding-block: 15px;
}

.dashboard-card .stats .item {
    font-size: var(--dark);
    text-align: center;
}

.dashboard-card .stats .item span {
    font-size: 40px;
    color: var(--black);
    display: block;
    margin-bottom: 8px;
}

.custom-btn-secondary {
    padding: 6px 16px;
    text-align: center;
    border-radius: 40px;
    border: 1px solid var(--orange);
    display: block;
    font-size: 16px;
    color: #000;
    transition: all ease 0.3s;
}

.space-30 {
    height: 30px;
}

/* End Dashboard */


.sales-chart-container {
    width: 100%;
    margin: 0 auto;
}

.sales-chart-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.sales-info {
    font-size: 24px;
    font-weight: bold;
}

.sales-percentage {
    font-size: 18px;
    font-weight: 400;
}

.sales-time-periods {
    display: flex;
    gap: 10px;
    color: #666;
}

.sales-total {
    color: var(--black);
}

.sales-time-periods span {
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 30px;
    width: 70px;
    text-align: center;
    background: #F5F5F5;
    border: 1px solid #F5F5F5;
    color: var(--black);
}

.sales-time-periods span.active {
    background-color: #ffeded;
    border-color: var(--orange);
}

.sales-chart-wrapper {
    position: relative;
    width: 100%;
    height: 410px;
}

#salesChartCanvas {
    width: 100% !important;
    height: 100% !important;
}


/*-------Modal----------*/
.add-product-modal .modal-header {
    border: 0;
    padding-bottom: 0;
}

.add-product-modal .modal-header h1 {
    font-weight: 500;
}

.add-product-modal .modal-content {
    border: 0;
    border-radius: 12px;
    box-shadow: 0px 20px 200px 0px rgba(0, 0, 0, 0.3);
}

.add-product-modal .modal-body .single-form-input {
    margin-bottom: 15px;
}

.add-product-modal .modal-body .single-form-input label {
    color: var(--black);
}

.add-product-modal .modal-body .single-form-input .form-control {
    box-shadow: none;
    border-radius: 30px;
    height: 44px;
}

.add-product-modal .modal-body .product-img-wrapper {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    text-align: center;
    background: #efefef;
}

.add-product-modal .modal-body .product-img-wrapper img {
    max-width: 100%;
    object-fit: contain;
    border-radius: 10px;
    height: 400px;
}

.add-product-modal .modal-body .product-img-wrapper input[type="file"] {
    display: none;
}

.add-product-modal .modal-body .product-img-wrapper .upload-photo-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 6px 20px;
    background-color: white;
    border: 1px solid var(--orange);
    color: black;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    z-index: 10;
}

.modal-backdrop.show {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.7);
    opacity: 1 !important;
}


@media (max-width:1024px) {
    .dashboard-page {
        flex-wrap: wrap;
    }

    .dashboard-page .dashboard-asidebar {
        order: 1;
        max-width: calc(100% - 32px);
        flex: 0 0 100%;
        margin: 0 auto;
    }

    .dashboard-page .dashboard-content {
        order: 2;
    }

    .custom-datatable-style-wrapper .dt-search .form-control {
        width: 240px;
    }
}

@media (max-width:768px) {
    .dashboard-page {
        padding: 0;
    }
}

@media (max-width:600px) {

    .custom-datatable-style-wrapper .card-title-position {
        position: relative;
        left: 0;
        top: 0;
        margin-bottom: 16px;
    }

    .datatable-filter {
        gap: 5px;
        font-size: 14px;
    }

    .datatable-filter li a {
        padding: 5px 15px;
    }
}

/*----events-cards-----*/
.events-cards .item {
    margin-bottom: 32px;
    display: block;
}

.events-cards .item figure {
    position: relative;
}

.events-cards .item figure .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 35px;
    color: var(--white);
}

.events-cards .item figure img {
    border-radius: 8px;
    object-fit: cover;
    height: 180px;
    width: 100%;
}

.events-cards .item .title {
    font-weight: 600;
    font-size: 20px;
    color: var(--black);
    margin: 12px 0;
}

.events-cards .item .tags {
    color: var(--black);
    background: rgba(245, 245, 245, 1);
    padding: 8px 22px;
    border-radius: 20px;
    display: inline-block;
}

.btn-show-more {
    border-radius: 30px;
    border: 1px solid var(--orange);
    padding: 10px 20px;
    font-size: 18px;
    color: var(--black);
}

/*------------------------------------*/
.custom-tabs .nav-item .nav-link {
    background: rgba(245, 245, 245, 1);
    color: var(--black);
    border: 1px solid transparent;
    border-radius: 30px;
    font-size: 18px;
    padding-inline: 20px;
}

.custom-tabs .nav-item .nav-link.active {
    background: rgba(255, 237, 237, 1);
    border-color: var(--orange);
}

/*-----------resource-inner--------*/
/* .resource-inner .user-info{
    display: i;
} */
.resource-inner .user-info img {
    flex: 0 0 32px;
    max-width: 32px;
    margin-inline-end: 16px;
}

.resource-inner .title {
    font-weight: 600;
    font-size: 24px;
    color: var(--black);
    margin-bottom: 16px;
}

.resource-inner .resource-info {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.resource-inner .resource-info i {
    color: var(--orange);
    margin-inline-end: 8px;
}

.resource-inner .details-card {
    background: rgba(244, 244, 244, 1);
    padding: 24px 16px;
    border-radius: 8px;
}

.resource-inner .details-card ul {
    color: var(--black);
}

.resource-inner .details-card ul li:first-child {

    border-top: 1px solid #ddd;
}

.resource-inner .details-card ul li {
    display: flex;
    justify-content: space-between;
    padding: 12px;
    border-bottom: 1px solid #ddd;
}

.resource-inner .details-card .price {
    font-size: 40px;
    color: var(--black);
    font-weight: 600;
}

.resource-inner .details-card .favorite {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    color: var(--black);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-inline-start: 8px;
    font-size: 18px;
}

.resource-inner .details-card .favorite.active {
    color: var(--orange);
}

@media (max-width:480px) {

    .resource-inner .details-card .price {
        font-size: 32px;
    }
}


/*----------------------------*/
.resource-inner .product-slider {
    border-radius: 12px;
    overflow: hidden;
}

.resource-inner .thumbs-slider {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
}

.resource-inner .thumbs-slider .swiper-slide {
    width: 25%;
    height: 100%;
    border: 3px solid transparent;
    border-radius: 8px;
    overflow: hidden;
}

.resource-inner .thumbs-slider .swiper-slide-thumb-active {
    border-color: var(--orange);
}

.resource-inner .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.resource-inner .product-slider .swiper-slide img {
    height: 600px;
}

.resource-inner .thumbs-slider .swiper-slide img {
    height: 60px;
}

.resource-inner .swiper-arrow {
    width: 40px;
    height: 40px;
    background: var(--white);
    color: var(--black);
    opacity: 1;
    border-radius: 50%;
}

.resource-inner .swiper-arrow:hover {
    background: rgba(255, 199, 0, 1);
}


.resource-inner .swiper-arrow.swiper-button-prev:after,
.resource-inner .swiper-arrow.swiper-button-next:after {
    font-family: "Font Awesome 5 Pro";
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

.resource-inner .swiper-arrow.swiper-button-prev:after {
    content: '\f177';
}

.resource-inner .swiper-arrow.swiper-button-next:after {
    content: '\f178';
}

.resource-inner .swiper-arrow.swiper-button-disabled {
    opacity: 0.4;
}

@media (max-width:480px) {
    .resource-inner .product-slider .swiper-slide img {
        height: 400px;
    }

    .resource-inner .thumbs-slider .swiper-slide img {
        height: 44px;
    }
}

/*--------------------------------------------*/


/*-------------------video--------------------*/

.media-container {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.media-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-container .playbutton {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    /* background-color: rgba(255, 255, 255, 0.3); */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: none;
    z-index: 100;
    cursor: pointer;
}

.media-container .playbutton::before {
    content: '';
    width: 50px;
    height: 50px;
    position: absolute;
    background-color: white;
    z-index: 10000;
    left: 50%;
    top: 50%;
    transition: none;
    transform: translate(-40%, -50%);
    clip-path: polygon(0 0, 0% 100%, 82% 51%);
    cursor: pointer;
    opacity: 0.6;
}

.media-container .playbutton::before:hover {
    opacity: 1;
}

/* use \25BA as content gives you also the triangle*/


.media-container .playbutton:hover {
    /* background-color: rgba(255, 255, 255, 0.4); */
    opacity: 1;
}

.media-container .playing {
    background-color: transparent;
}

.media-container .playing::before {
    background-color: transparent;
}

.media-container .playing:hover {
    background-color: transparent;
}
.media-container .playing{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 40px;
}
.media-container .playing::before,.media-container .playing::after{
    content: '';
    position: relative;
    clip-path:none;
    width: 12px;
    height: 50px;
    background: var(--white);
    opacity: 0.2;
    transform: translate(0);
    top: 0;
    left: 0;
    right: 0;
    transition: none;
}
.media-container .playing:hover::before,.media-container .playing:hover::after{
    opacity: 0.5;
}
/*-------------------------*/

.color-option {
    display: inline-block;
    margin: 0 5px 10px 0;
    cursor: pointer;
}
.color-option input[type="radio"]{
    display: none;
}
.color-circle {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: inline-block;
    border: 2px solid transparent;
}
.color-option input[type="radio"]:checked + .color-circle {
    border: 2px solid #000;
}

.video-wrapper{
    position: relative;
    height: 100%;
}
.video-wrapper i{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    font-size: 22px;
    color: #fff;
}
.video-wrapper video{
    object-fit: cover;
    height: 100%;
    width: 100%;
}



