/*
--------------------------------------------------------------------------------------------------------
* Project    :                                                                                         *
* Author     : piyush Tapaniya | +91 83060 05795                                                       * 
* Support    : piyush.tapaniya90@gmail.com                                                             * 
*------------------------------------------------------------------------------------------------------- 
NOTE: This is main stylesheet of template, This file contains the styling for the actual Template.
*/

/*================================================
[  Table of contents  ]
================================================== 
:: general css Style
   :: google font
   :: basic style     
   :: headings
   :: button style
   :: helper classes 
   :: section title
   :: box border
   :: custome class 
:: scrollbar CSS
:: back to top CSS
:: loader CSS
:: animations 
==================================================
[ End table content ]
================================================*/

@charset "UTF-8";
/*================================================
    :: general css Style
==================================================*/

/* :: google font */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');



/* :: basic style  */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    list-style: none;
    word-wrap: break-word;
}

body, html {
    height: 100%;
}
body {
    font-family: "Inter", sans-serif;
    background-color: #ffffff;
    color: #000;
}

p { 
    color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul,
li,
a {
    margin-top: 0;
    margin-bottom: 0;
    -webkit-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
    transition: all linear 0.3s;
}

img {
    max-width: 100%;
    height: auto;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

a,
a:hover,
a:active,
a:focus {
    text-decoration: none;
    outline: none;
    text-decoration: none;
    color: inherit;
}


ol,
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

button {
    outline: none;
    border: 0;
    cursor: pointer;
    background: transparent;
}

button:focus {
    outline: none;
    outline: 0;
}

iframe {
    width: 100%;
    border: 0px;
}


.owl-carousel .owl-item img { 
    width: auto;
}

/* :: Form */
textarea {
    resize: none;
}

/* select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
} */

input[type="number"] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
}

::-moz-selection {
    background: #0C8E19;
    color: #ffffff;
    text-shadow: none;
}

::selection {
    background: #0C8E19;
    color: #ffffff;
    text-shadow: none;
}

.form-check-input { 
    background-color: #EEEFF2; 
    border: 1px solid #EEEFF2; 
}
.form-check-input:checked {
    background-color: #FFB82F;
    border-color: #FFB82F;
}
.form-check-input:focus {
    border-color: #FFB82F; 
    box-shadow: 0 0 0 .25rem rgb(255 184 47 / 32%);
}

/* :: headings */

/* :: Font h1 */
h1 {
    font-size: 62px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    h1 {
        font-size: 52px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    h1 {
        font-size: 42px;
    }
}

@media only screen and (max-width: 767px) {
    h1 {
        font-size: 42px;
    }
}

/* :: Font h2 */
h2 {
    font-size: 52px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    h2 {
        font-size: 42px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    h2 {
        font-size: 32px;
    }
}

@media only screen and (max-width: 767px) {
    h2 {
        font-size: 32px;
    }
}

/* :: Font h3 */
h3 {
    font-size: 32px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    h3 {
        font-size: 28px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    h3 {
        font-size: 26;
    }
}

@media only screen and (max-width: 767px) {
    h3 {
        font-size: 26;
    }
}

/* :: Font h4 */
h4 {
    font-size: 28px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    h4 {
        font-size: 24px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    h4 {
        font-size: 24px;
    }
}

@media only screen and (max-width: 767px) {
    h4 {
        font-size: 24px;
    }
}

/* :: Font h5 */
h5 {
    font-size: 22px;
}

@media only screen and (max-width: 767px) {
    h5 {
        font-size: 22px;
    }
}

/* :: Font h6 */
h6 {
    font-size: 18px;
}

@media only screen and (max-width: 767px) {
    h6 {
        font-size: 18px;
    }
}

.owl-dots {
    text-align: center;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: auto;
}
.owl-dots button {
    height: 12px;
    width: 12px;
    background: #dcdcdc !important;
    display: inline-block;
    margin: 0 4px;
    border-radius: 15px;
}
.owl-dots button.active{
    background: #0C8E19 !important;
}


/* :: button style */
.button-style {
    display: inline-block; 
    padding: 12px 30px;
    border-radius: 8px;
    border: 1px solid #34A5F8;
    background: #34A5F8;
    color: white;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    position: relative;
    z-index: 5;
    overflow: hidden;
} 

.button-style:hover {
    background: #2187cf;
    color: white; 
}

.button-style:hover:before {
    transform: scaleX(1);
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
}


.button-info {
    display: inline-block;
    vertical-align: top;
    padding: 8px 30px;
    border-radius: 30px;
    border: 1px solid #0C8E19; 
    color: #000;
    font-size: 15px;
    font-weight: 500;
    text-transform: capitalize;
    position: relative;
    z-index: 5;
    overflow: hidden; 
} 

.button-info:hover {
    background: #aaa046;
    color: #000;
    border-color: transparent;
}

/* :: helper */
.text-gray {
    color: #000 !important;
}
.text-secondary{
    color: #FFB82F !important;
}

.text-white {
    color: #ffffff !important;
}

.text-black {
    color: #000000 !important;
}

.text-color,
.text-primary {
    color: #34A5F8 !important;
}
.text-green{
    color: green;
}
.text-red{
    color: red;
}

.bg-white {
    background-color: #ffffff !important;
}
.bg-secondary{
    background: #FFB82F !important;
}

.bg-color {
    background-color: #0C8E19 !important;
}

.bg-01 {
    background-color: #000 !important;
}

.bg-02 {
    background-color: #f1f1f1 !important;
}
.bg-gradient{
    background: linear-gradient(to right, #ffe8e3, #ffede2, #fff2e3, #fff7e5, #fffde8);
}
.grid-1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 1.5rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.5rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1.5rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1.5rem;
}

.grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 1.5rem;
}

.grid-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 1.5rem;
}

/* :: form */
.form-control {
    height: 46px;
}

.form-control:focus {
    background-color: transparent;
}

.form-group input[type="text"],
.form-group input[type="password"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group select {
    position: relative;
    display: block;
    width: 100%;
    line-height: 28px;
    padding: 10px 25px;
    border-radius: 0px;
    background: transparent;
    border: 1px solid #d3d3d3;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.form-group textarea {
    position: relative;
    display: block;
    width: 100%;
    line-height: 24px;
    padding: 15px 25px 25px;
    color: #000;
    height: 185px;
    background: transparent;
    color: #ffffff;
    resize: none;
    border-radius: 0px;
    border: 1px solid #d3d3d3;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

label.error {
    display: block;
    padding: 5px 0px 0px;
    margin: 0px;
    text-transform: capitalize;
    font-size: 14px;
    color: #ff0000;
    font-weight: 500;
}

input.error,
select.error,
textarea.error {
    border-color: #ff0000 !important;
}



/* input effect */
.input-container {
    position: relative;
    border: 1px solid #CDD7E0;
    border-radius: 5px !important; 
}

.input-error {
    border: 1px solid red;
}

.input {
    box-sizing: border-box;
    color: #000;
    font-size: 15px;
    height: 50px !important;
    outline: 0;
    padding: 12px 17px 12px 17px;
    width: 100%;
    border: none !important;
    border-radius: 5px !important;
    background: transparent;
    font-weight: 500;
}

textarea.input {
    height: 100px !important;
}

.input-error-text {
    color: red;
    font-size: 12px;
    position: absolute;
    left: 0;
    bottom: -18px;
}

.placeholder {
    color: #92929D;
    left: 20px;
    line-height: 14px;
    pointer-events: none;
    position: absolute;
    transform-origin: 0 50%;
    transition: transform 200ms, color 200ms;
    top: 18px;
    margin: 0;
    background-color: #fff;
    opacity: 1;
    font-size: 15px;
    font-weight: 500;
}

.input:focus~.placeholder,
.input:not(:placeholder-shown)~.placeholder {
    transform: translateY(-26px) translateX(-20px) scale(0.75);
    padding: 0 10px;
    left: 30px;
    background: #fff;
    color: #92929D;
    font-size: 18px;
} 


/*radio button stype*/ 
[type="radio"]:checked,
[type="radio"]:not(:checked) {position: absolute; left: -9999px; }
[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label {position: relative; padding-left: 34px; cursor: pointer; display: inline-block;}
[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {content: ''; position: absolute; left: 1px; top: 4px; width: 18px; height: 18px; border: 1px solid #c1c1c1; border-radius: 100%; background: #fff; }
[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {content: ''; width: 12px; height: 12px; background: #0a58ca; position: absolute; top: 7px; left: 4px; border-radius: 100%; -webkit-transition: all 0.2s ease; transition: all 0.2s ease; }
[type="radio"]:not(:checked) + label:after {opacity: 0; -webkit-transform: scale(0); transform: scale(0); }
[type="radio"]:checked + label:after {opacity: 1; -webkit-transform: scale(1); transform: scale(1); }


.dropdown .dropdown-menu {
    padding: 15px 0;
}
.dropdown-menu.show {
    display: block;
    background: #fff;
    box-shadow: 0px 0px 22px -4px rgba(11, 26, 56, .1);
    border: none;
    border-radius: 20px;
}

/*-------------------------------------------------
:: scrollbar CSS 
-------------------------------------------------*/

 

/*================================================
:: back to top CSS
==================================================*/
.scrollToTop {
    position: fixed;
    bottom: 0;
    right: 30px;
    padding: 10px 6px;
    background: #34a5f8;
    font-weight: 600;
    color: #ffffff;
    font-size: 12px;
    text-align: center;
    border-radius: 25px;
    z-index: 99;
    cursor: pointer;
    transition: all 1s;
    transform: translateY(100%);
}
  .scrollToTop i {
    -webkit-animation: scroll-down 2s infinite;
    -moz-animation: scroll-down 2s infinite;
    -o-animation: scroll-down 2s infinite;
    animation: scroll-down 2s infinite;
    font-size: 15px;
    margin-bottom: 10px;
  }
  .scrollToTop span {
    display: block;
    color: #ffffff;
  }
  
  .scrollToTop.active {
    bottom: 30px;
    transform: translateY(0%);
  } 
  
  .scrollToTop:hover, .scrollToTop:focus {
    color: #ffffff;
  }

/*================================================
:: loader CSS
==================================================*/
.loader-box {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    background: #4285F4;
    z-index: 99999;
} 

.loader-round {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 7px solid #EDF1F2;
    border-top: 7px solid #000;
    animation: rotate 2s infinite ease;
} 

/*================================================
:: animations
==================================================*/
@keyframes bounce {
    0%,
    50%,
    100% {
        transform: scaleY(1);
        border-radius: 50%;
    }
    25%,
    75% {
        transform: translateY(-100px) rotateY(360deg) scaleX(0.66) scaleY(1.25);
        border-radius: 50%;
    }
    15%,
    40%,
    65%,
    90% {
        transform: translateY(10px) scaleX(1.25) scaleY(0.5);
        border-bottom-left-radius: 25%;
        border-bottom-right-radius: 25%;
    }
}
@keyframes scroll-down {
    0% {
      transform: translateY(0);
    }
  
    50% {
      transform: translateY(10px);
    }
  
    100% {
      transform: translateY(0px);
    }
}
@keyframes rotate{
    0%{transform: none;}
    100%{transform: rotate(1turn)};     
}


/*================================================
:: Login/Register/OTP Page
==================================================*/ 
.login-area {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    height: 100%;
}

.login-logo-image {
    margin-bottom: 80px;
}

.login-content {
    height: 100%; 
    width: 100%;
    padding: 200px 200px 140px 200px;  
} 

.nav-tabs {
    border-bottom: none;
}

.nav-tabs .nav-link {
    border: none;
    font-size: 18px;
    color: #92929D;
    position: relative;
    padding: 0 0 11px;
    margin-right: 25px;
    font-weight: 600;
}

.nav-tabs .nav-item.show .nav-link, 
.nav-tabs .nav-link.active {
    color: #000; 
}
.nav-link.active::after{
    content: '';
    position: absolute;
    height: 2px;
    left: 0;
    width: 100%;
    background-color: #FFB82F;
    bottom: 0;
}

.login-image {
    background: linear-gradient(180deg, #34A5F8 0%, #6AC0FF 100%); 
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    order: 2;
}

span.errors-text {
    position: absolute;
    right: 0;
    bottom: -20px;
    font-size: 12px;
    color: red;
} 
.input-container{
    margin-bottom: 25px;
}
.input-container.with-icon img{ 
    position: absolute;
    right: 15px;
    top: 12px;
}
.input-container.with-icon .profile-flag{ 
    display: flex;
    position: absolute;
    left: 15px;
    top: 15px;
}
.with-icon a {
    position: absolute;
    right: 10px;
    top: 12px;
    z-index: 2;
    font-size: 14px;
    opacity: 0.5;
}
.welcome-text h1{
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    color: #4285F4;

}
.input-otp{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 15px; 
}
.input-otp .input{
    border-bottom: 1px solid #BEC4CA !important;
    border-radius: 0 !important;
    padding: 0 !important;
    text-align: center;
    font-size: 24px !important;
} 
.main-body {
    max-width: 1920px;
    margin: 0 auto;
}
.main-area {
    border-top: 1px solid #EEEFF2; 
    padding: 30px 15px;
}
.banner-text {
    max-width: 380px;
    padding: 65px;
}
.banner-text h1 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}
.banner-text p {
    color: #fff;
    font-size: 14px;
}

.banner-item {
    background-color: #34A5F8;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    
}
.banner-image {
    position: absolute;
    right: 3%;
    bottom: -66px;
}

.banner-slider .owl-thumbs {
    display: none;
}

.steps-title h1 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #11142D;
}

.single-name {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.single-name span { 
    font-size: 14px;
    font-weight: 500;
    color: #11142D;
}

.skill-progress-wapper .single-progressbar {
    margin-bottom: 10px;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column;
}
.skill-progress-wapper .single-progressbar .progressbar {
    position: relative;
    width: 100%;
    height: 10px; 
    border-radius: 50px;
    background-color: #EBF0ED;
}
.skill-progress-wapper .single-progressbar .progressbar .progress-bar-count {
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    width: 0;
    background: linear-gradient(180deg, #FFCD6C 0%, #FFB82F 100%); 
    border-radius: 50px; 
    transition: all 800ms linear;
}
.skill-progress-wapper .single-progressbar .progressbar .progress-bar-count::before {
    content: "";
    position: absolute;
    background: url(../../assets/images/crown.png);
    color: #fff; 
    font-size: 10px;
    font-weight: 600;
    top: -29px;
    right: 0;
    transform: translateX(50%);
    line-height: 15px;
    height: 18px;
    width: 18px;
} 

.page-title h2{
    font-size: 22px;
    font-weight: 600;
    color: #11142D;
}


.rewards-card {
    position: relative;
    border-radius: 20px;
    background-color: rgb(249 249 249);
}

.rewards-slider .owl-dots,
.rewards-slider .owl-thumbs {
    display: none;
}
.rewards-slider .owl-nav {
    position: absolute;
    top: -45px;
    right: 0;
    display: flex;
    gap: 10px;
}
.rewards-slider .owl-nav button.owl-next, 
.rewards-slider .owl-nav button.owl-prev {
    height: 24px;
    width: 24px;
    font-size: 22px;
    display: flex
;
    justify-content: center;
    align-items: center;
} 

.rewards-card .rewards-imge{
    position: relative;
    border-radius: 20px; 
    overflow: hidden;
}
.rewards-card .rewards-imge img{
    width: 100%;
}
.rewards-content {
    padding: 20px;
}
.rewards-card .rewards-imge img.lock {
    width: auto;
    position: absolute;
    left: 20px;
    top: 20px;
}
.rewards-card .rewards-content .rewards-card-name{
    font-size: 18px;
    margin-bottom: 15px;
}
.rewards-content p {
    color: #92929D;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.content-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.content-text span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: #92929D;
    line-height: normal;
}
.content-text a {
    background-color: #34A5F8;
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
    border-radius: 8px;
    line-height: normal;
    padding: 15px;
    width: 100%;
    text-align: center;
}
.content-text a:hover{
    background-color: #087913;
}

.try-spin img{
    width: 100%; 
}

 
.copyright-text{
    text-align: center;
}
.copyright-text p{
    color: #fff;
    font-size: 13px;
}


/* product */

.filter-data ul {
    padding: 5px 20px 5px 10px;
}
.filter-data .form-check {
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin: 0;
}
.product-filters .product-filters-item{
    margin-bottom: 30px; 
} 
.filter-data .form-check .form-check-label {
    font-size: 14px;
    color: #11142D;
}
.filter-data ul li {
    margin: 5px 0;
}
.filters-dropdown .filters-dropdown-name{
    font-size: 15px;
    font-weight: 500;
    position: relative;
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #f1f0fa;
    margin-bottom: 5px;
}
.filters-dropdown  .filter-data a {
    padding: 3px 10px;
    display: inline-block;
    font-size: 14px;
}
.product-filters .product-filters-item .product-filters-list .filters-dropdown-name::after{
    content: "+";
    position: absolute;
    height: 44px;
    width: 44px;
    right: 5px;
    top: 0;
    bottom: 0;
    margin: auto;
    background-image: none;
    font-family: "Font Awesome 6 Free";
    font-size: 18px;
    font-weight: 600;
    z-index: 2;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}
.product-filters .product-filters-item .product-filters-list .filters-dropdown-name[aria-expanded="true"]::after {
    content: "-";
}

.sortby {
    display: flex; 
    justify-content: flex-end;
    align-items: center;
}
.sortby input,
.sortby select {
    background-color: #fff;
    border: 1px solid #FFB82F;
    height: 38px;
    line-height: normal;
    font-size: 14px;
    width: 220px;
    padding-left: 10px;
    margin-left: 10px;
    border-radius: 5px 0 0 5px;
}
.sortby .sortby-search {
    background-color: #FFB82F;
    height: 38px;
    width: 38px;
    border-radius: 0 5px 5px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-card{
    position: relative;
    border: 1px solid #E1E0FF;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
}
.product-card .product-card-image{
    position: relative;
    overflow: hidden;
}
.product-card .product-card-image img{
    width: 100%;
}
.product-card .product-card-content {
    padding: 20px;
}
.product-card .product-card-content h4 {
    font-size: 18px;
    margin-bottom: 10px;
}
.product-card .product-card-content p {
    font-size: 14px;
    margin-bottom: 10px;
}
.product-card:hover .product-card-image img{
    transform: scale(1.1);
}


/* product details */
.details-gallery .owl-item {
    border: 1px solid transparent;
}

 
.details-gallery {
    display: flex;
    flex-direction: row-reverse;
}

.details-gallery .owl-thumbs {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 30px;
}
.gallery-slider .owl-dots{
    display: none;
}
.details-gallery .owl-carousel .owl-item {
    border-radius: 25px;
    overflow: hidden;
}
.details-gallery .owl-thumbs button {
    width: 120px;
    border: 1px solid transparent; 
    border-radius: 25px;
    overflow: hidden;
}
.details-gallery .owl-thumbs button img {
    width: 100%;
} 
.details-gallery .owl-thumbs button.active {
    border-color: #34A5F8;
}
.sticky-column .sticky-box {
    position: sticky;
    position: -webkit-sticky;
    top: 10px;
}
 
.product-details-title {  
    margin-bottom: 20px;
}
.product-details-title h2{
    font-size: 34px;
    font-weight: bold;
    margin-bottom: 5px;
}
.product-details-title p{
    font-size: 16px;
    font-weight: normal;
    line-height: normal;
}
.product-details-price {
    display: flex;
    gap: 40px;
    margin-bottom: 20px;
    flex-direction: column;
    
}
.mrp {
    position: relative;
    padding-bottom: 30px;
    border-bottom: 1px solid #EEEFF2;
} 
.product-button {
    flex: 1;
}

 
.description p{
    font-size: 16px;
    line-height: normal;
}
.highlights ul{
    padding-left: 20px;
}
.highlights ul,
.highlights ul li{
    list-style-type: disc;
}
.specifications ul li {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}
.specifications ul li span:nth-child(1) {
    width: 150px;
    display: inline-block;
}
.specifications ul li span:nth-child(2) {
    flex: 1;
    font-weight: 500;
}

.details-gallery .owl-carousel .owl-item img {
    width: auto !important;
}
 
.check-out-product{
    display: flex;
    gap: 10px;
}
.check-out-content {
    flex: 1;
}
.check-out-imge {
    border-radius: 5px;
    overflow: hidden;
}
.check-out-product {
    display: flex;
    gap: 15px;
    border-radius: 10px;
    padding: 20px;
    background-color: #F8F8F8;
}
.check-out-right{
    box-shadow: 0 4px 36px 0px rgb(0 0 0 / 10%);
    padding: 50px;
    border-radius: 30px;
}
.check-out-content .desc,
.checkout-btn p{
    font-size: 14px;
    color: #92929D;
    line-height: normal;
}
.checkout-back-text{
    color: #92929D;
    display: flex;
    gap: 10px;
    align-items: center;
}
.checkout-payment-items {
    margin-bottom: 20px;
}
.checkout-check label{
    font-size: 14px;
    line-height: normal;
    color: #92929D;
} 

.checkout-payment-items [type="radio"]:checked + label, 
.checkout-payment-items [type="radio"]:not(:checked) + label {
    font-weight: 600;
} 

.thankyou-wappers {
    box-shadow: 0 4px 36px 0px rgb(0 0 0 / 10%);
    padding: 30px;
    border-radius: 30px;
    max-width: 991px;
    margin: 0 auto;
}
.paid-text {
    display: flex;
    align-items: center;
    gap: 5px;
}

.thankyou-product {
    display: flex;
    gap: 15px;
    border-radius: 10px;
    padding: 20px;
    background-color: #F8F8F8;
}
.thankyou-content {
    flex: 1;
}
.thankyou-imge {
    border-radius: 5px;
    overflow: hidden;
}
.thankyou-content .desc, 
.checkout-btn p {
    font-size: 14px;
    color: #92929D;
    line-height: normal;
}

.table-box {
    box-shadow: 0 4px 36px 0px rgb(0 0 0 / 10%);
    padding: 50px;
    border-radius: 10px;
}

.table-box thead tr th {
    padding: 25px 20px;
    font-size: 16px;
    background-color: #34A5F8;
    color: #fff;
    font-weight: normal;
    vertical-align: middle;
}
.table-box tbody tr td {
    font-size: 14px;  
    padding: 15px 20px;
    vertical-align: middle;
}
.table-box tbody tr:nth-child(even){
    background-color: #F5F5F5;
}
.table-box .table>:not(:first-child) {
    border-top: 0 solid currentColor;
}

.table-box table.table {
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}
.points-table {
    box-shadow: 0px 4px 11px 0px #00000040;
    padding: 50px;
    border-radius: 20px;
}
.points-table thead tr th {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #FFB82F;
    color: #fff; 
    font-weight: normal;
}
.points-table tbody tr td {
    font-size: 16px;  
    padding: 10px 20px;
    vertical-align: middle;
}
.points-table .table>:not(:first-child) {
    border-top: 0 solid currentColor;
}
.table-description{
    width: 80%;
}

.product-details-wappers{
    box-shadow: 0 4px 36px 0px rgb(0 0 0 / 10%);
    padding: 50px;
    border-radius: 30px;
}

.order-wapper {
    box-shadow: 0 4px 36px 0px rgb(0 0 0 / 10%);
    padding: 30px;
    border-radius: 20px; 
    margin: 0 auto 30px 0;
}

.order-items {
    display: flex;
    gap: 15px;
    border-radius: 10px;
    padding: 20px;
    background-color: #F8F8F8;
}
.order-imge{
    border-radius: 5px;
    overflow: hidden;
}
.order-content {
    flex: 1;
}


.accordion-item {
    background-color: #fff;
    border: 1px solid #f1f1f1 !important;
    box-shadow: 0 4px 36px 0px rgb(0 0 0 / 10%);
    border-radius: 10px !important;
    overflow: hidden;
    margin-bottom: 10px;
}
.accordion-button{
    font-weight: 600;
    color: #11142D;
}
.accordion-button:not(.collapsed) {
    color: #11142D;
    background-color: transparent;
    box-shadow: none;
    padding-bottom: 0;    
}
.accordion-content p {
    font-size: 14px;
}

.contact-item {
    box-shadow: 0 4px 36px 0px rgb(0 0 0 / 10%);
    padding: 25px;
    border-radius: 10px;
}
.contact-title {
    font-size: 18px;
    color: #34A5F8;
    margin-bottom: 5px;
}

.contact-content .desc{
    font-size: 14px;
    color: #11142D;
}

.order-content-details{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 1.5rem;    
}
.order-content-details-items p,
.order-content .desc{
    color: #92929D;
}

.chart-item {
    border: 1px solid #0a58ca;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}


.retailers-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 36px 0px rgb(0 0 0 / 10%);
}
.retailers-top {
    text-align: end;
    margin-bottom: 40px;
    position: relative;
}
.retailers-crown {
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: #34a5f8;
    border-radius: 12px;
    left: 20px;
    top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.retailers-top p { 
    font-size: 14px;
    background-color: #EEEFF2;
    padding: 20px;
}
.retailers-bottom p {
    font-size: 14px;
    line-height: normal;
}

.retailers-bottom {
    padding: 5px 25px 25px 25px;
}
.tag-rerailer {
    background-color: rgb(255 184 47 / 20%);
    display: inline-block;
    padding: 5px 15px;
    border-radius: 100px;
}
.reports-item .reports-text {
    text-align: center;
}
.reports-item .reports-text a.active {
    color: #34A5F8;
    border-color: #34A5F8;
}
.reports-item .reports-text a {
    font-size: 14px;
    border-bottom: 2px solid transparent;
    padding: 4px 0px;
    display: inline-block;
    color: #11142D;
}
.reports-slider .owl-thumbs,
.reports-slider .owl-dots{
    display: none;
}

.reports-slider {
    display: inline-block !important;
    white-space: nowrap !important;
    overflow-y: hidden;
    overflow-x: auto;
    width: 100%;
}

.reports-item {
    display: inline-block;
    position: relative;
    margin-right: 30px;
}

.help-desk-area {
    min-height: calc(100vh - 235px);
    display: flex;
    justify-content: center; 
}

.contact-info ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 15px;
}

.contact-info i {
    color: #34A5F8;
    font-size: 30px;
    margin-right: 16px;
}

.contact-info .address-info {
    color: #000;
}


.profile-wapper {
    box-shadow: 0 4px 36px 0px rgb(0 0 0 / 10%);
    border-radius: 20px;
    overflow: hidden;
}
.profile-header {
    background-color: #34A5F8;
    padding: 20px 50px;
    position: relative;
}
.profile-header .shield{
    position: absolute;
    right: 50px;
    top: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
 
.profile-user{
    display: flex;
    align-items: center;
    gap: 20px;
}
.profile-image {
    width: 72px;
    height: 72px;
    border-radius: 50px;
    overflow: hidden;
    border: 1px dotted #fff;
    padding: 3px;
}
.profile-image img {
    width: 72px;
    border-radius: 50px;
}
.profile-content {
    padding: 50px;
}

/* .spin-wapper{
    position: relative;
    background-color: #0C8E19;
    padding: 100px 20px 60px 20px;
    text-align: center;
    border-radius: 20px;
    width: 300px;
    margin: 0 auto;
}
.spin-top-icon {
    margin-top: -140px;
    margin-bottom: 40px;
} */
#congratulations .modal-content {
    background-color: transparent;
    border: none;
    box-sizing: border-box;
}

#congratulations .modal-content .congratulations-area-box {
    background-color: #fff;
    border: none;
    padding: 60px 20px 20px 20px;
    border-radius: 20px;
}

.congratulations-icon {
    margin-top: 30px;
    margin-bottom: -60px;
    z-index: 2;
    position: relative;
    text-align: center;
}

.scratch-cards-wappers{
    display: flex;
    grid-gap: 35px;
    flex-wrap: wrap;
}
 
.scratch-cards-item.unactive {
    cursor: pointer;
}
.scratch-cards-item {
    text-align: center;
    box-shadow: 0 4px 36px 0px rgb(0 0 0 / 10%);
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 185px;
    width: 215px;
    border-radius: 20px;
    overflow: hidden;
}
.scratch-tag {
    position: absolute;
    top: 0;
    right: 0;
    color: #34A5F8;
    font-size: 11px;
    background: rgb(52 165 248 / 8%);
    padding: 5px 10px;
    border-radius: 100px;
}
.scratch-cards-content h4{
    color: #CACACA;
}
.scratch-cards-item.unactive::before {
    content: '';
    height: 100%;
    width: 100%;
    object-fit: cover;
    background: url(../../assets/images/scratch-cards/bg.png) no-repeat;
    position: absolute;
    background-color: #FFB82F;
    z-index: 1;
    margin: 0 auto;
    text-align: center;
    background-size: 205px;
    background-position: center;
}


#scratchmodal .modal-body {
    padding: 0;
}
#scratchmodal .modal-content {
    border-radius: 20px;
    overflow: hidden;
    border: none;
    max-width: 340px;
    margin: 0 auto;
}
#scratchmodal button.btn-close{
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 2;
    filter: brightness(0) invert(1);
    opacity: 1;
}
#pointsmodal button.btn-close{
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 2; 
}
.scratch-modal-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;    
    z-index: -1;
}
.scratch-modal-bottom {
    padding: 25px;
}
.scratch-content ul {
    padding-left: 20px;
} 
.scratch-content ul li {
    list-style: disc;
    padding-left: 0;
}
.scratch-modal-top {
    background-color: #34A5F8;
    padding: 50px;
    text-align: center;
    border-radius: 20px;
    z-index: 1;
    position: relative;
}


#pointsmodal .modal-body {
    padding: 0;
}
#pointsmodal .modal-content {
    border-radius: 20px;
    overflow: hidden;
    border: none;
    max-width: 340px;
    margin: 0 auto;
}
.points-model-item {
    padding: 25px;
    text-align: center;
}
/* Company Css */

.report-filters ul li a{
    font-size: 16px;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    margin-bottom: 5px;
    display: inline-block;
}
.report-filters ul li a.active{ 
    color: #34A5F8; 
}
.mange-table table .names{
    width: 60%;
} 

.upload-form{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 1.5rem;
}

 
.toggle {
    cursor: pointer;
    position: relative;
    display: inline-block;
}
.toggle-switch {
    display: inline-block;
    background: #ccc;
    border-radius: 16px;
    width: 40px;
    height: 24px;
    position: relative;
    vertical-align: middle; 
}
.toggle-switch:before, .toggle-switch:after {
    content: "";
}
.toggle-switch:before {
    display: block;
    background: #000;
    border-radius: 50%; 
    width: 20px;
    height: 20px;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: left 0.25s;
} 
 
.toggle-checkbox:checked + .toggle-switch:before {
    left: 17px;
    background: #0a58ca;
}
.toggle-checkbox {
    position: absolute;
    visibility: hidden;
} 


.page-height{
    min-height: calc(100vh - 234px);
    display: flex;
    justify-content: center;
}






 
.upload__inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.upload__btn {
    display: inline-block;
    font-weight: 600;
    color: #fff;
    text-align: center;
    min-width: 116px;
    padding: 12px 30px;
    transition: all 0.3s ease;
    cursor: pointer;
    background-color: #0a58ca;
    border-radius: 10px;
}

.upload__btn p {
    color: #fff;
}

.upload__btn:hover {
    background-color: #225fc2;
}

.upload__btn-box {
    margin-bottom: 10px;
}

.upload__img-wrap {
    display: flex;
    flex-wrap: wrap; 
}

.upload__img-box {
    width: 100px;
    padding: 0 5px;
    margin-bottom: 0;
}

.upload__img-close {
    width: 18px;
    height: 18px;
    line-height: 18px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 5px;
    right: 5px;
    text-align: center;
    z-index: 1;
    cursor: pointer;
}

.upload__img-close:after {
    content: '\2716';
    font-size: 12px;
    color: white;
}

.img-bg {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    padding-bottom: 100%;
    border: 1px solid #cbcbcb;
    border-radius: 10px;
}

.upload__img-hover label {
    font-size: 11px;
    display: flex;
    gap: 4px;
}

.upload__img-hover {
    transform: translate(0, -20px);
    opacity: 0;
    transition: 0.3s;
}
.upload__img-box:hover .upload__img-hover {
    transform: translate(0, 0);
    opacity: 1;
}
.upload__img-wrap .upload__img-box:nth-child(1) .upload__img-hover {
    display: none;
}  
.catalog-filter{
    display: flex;
    justify-content: end;
    gap: 20px;
    flex-wrap: wrap;
}
.add-rewards-btns-wappers {
    display: flex;
    align-items: center;
}
.add-rewards-btns-wappers .add-rewards-btns{
    display: inline-block;
    padding: 8px 30px;
    border-radius: 10px;
    border: 1px solid #34A853;
    background: #34A853;
    color: white;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    z-index: 5;
    overflow: hidden;
}
.add-rewards-btns-wappers .add-rewards-btns:hover {
    background: #087913; 
}
.action-item {
    display: flex;
    gap: 10px;
}


.mobile-filter {
    background-color: #ffb82f33;
    border: 1px solid #FFB82F;
    height: 38px;
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    padding: 0 15px;
}
.mobile-filter p{
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    gap: 5px;
}
.mobile-filter p {
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    gap: 5px;
    align-items: center;
}
.mobile-filter p span {
    height: 20px;
    width: 20px;
    background: #FFB82F;
    border-radius: 100px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.mobile-filter-title h3 {
    font-size: 18px;
    margin-bottom: 10px;
}
.filter-colose, .mobile-filter{
    display: none;
}

.retailer-details-box{
    box-shadow: 0px 4px 11px 0px #00000040;
    padding: 30px;
    border-radius: 20px;
}
.select-catalog select {
    padding: 9px 11px;
    border-radius: 10px;
    border: 1px solid #34A853;
    background: #34A853;
    color: white;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
}

.users-search {
    position: relative;
}

.users-search input {
    background-color: #fff;
    border: 1px solid #34A853;
    height: 38px;
    line-height: normal;
    font-size: 14px;
    width: 220px;
    padding-left: 10px; 
    border-radius: 10px;
}
.users-search a{
    background-color: #34A853;
    height: 38px;
    width: 38px;
    border-radius: 0 10px 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
}

.form-switch .form-check-input {
    width: 35px;
    height: 22px;
}
.page-title-end {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.page-title-end a.button-style {
    padding: 10px 15px;
    font-size: 14px;
}
.page-title-end .dropdown-toggle {
    background-color: #FFB82F;
    border-color: #FFB82F;
    height: 43px;
}
.rewards-table-box {
    display: flex;
    align-items: center;
    gap: 15px;
}
.rewards-table-image {
    width: 60px;
}
.rewards-table-image img{
    border-radius: 10px;
}
.rewards-table-box .rewards-table-content {
    flex: 1;
}
.invoice-verifi-btns-wappers a{
    padding: 8px 10px;
    font-size: 14px;
}
.accept-selction select,
.accept-selction input {
    border: 1px solid#CDD7E0;
    height: 38px;
    padding: 0 15px 0 5px;
    border-radius: 5px;
    font-size: 14px;
    max-width: 150px;
}


.dropdown-item.active, .dropdown-item:active {
    color: #1e2125;
    text-decoration: none;
    background-color: #F5F5F5;
}
.accept-selction .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: 110px;
}
.accept-selction .dropdown-toggle.btn-light {
    border: 1px solid #CDD7E0; 
    font-size: 14px;
    background: #fff;
}
.accept-selction .bootstrap-select .dropdown-menu li a { 
    font-size: 14px;
}



/* display css start */
.display-wapper {
    margin-right: 130px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px;
}
.display-items {
    box-shadow: 0 4px 36px 0px rgb(0 0 0 / 10%);
    padding: 20px;
    border-radius: 10px;
    position: relative;
}
.image {
    border-radius: 10px;
    overflow: hidden;
}
.like-icon.active svg path {
    fill: #FF0004;
}
.upload-btns input[type="file"] {
    display: none;
}
.close-card {
    position: absolute;
    top: 4px;
    right: 4px;
}
.custom-file-upload { 
    display: inline-block; 
    cursor: pointer;
}

#delete .btn-close {
    position: absolute;
    top: -30px;
    right: -30px;
    opacity: 1;
    filter: brightness(0) invert(1);
}
#delete .modal-content { 
    border: none;
    padding: 20px;
}

button.cancel-btn.button-style { 
    border-color: #34a5f8; 
    color: #000;
    background-color: transparent;
}
button.cancel-btn.button-style:hover { 
    color: #fff;
    background-color: #34a5f8;
}
button.delete-btn.button-style {
    border-color: #ff0000; 
    color: #ff0000;
    background-color: transparent;
}
button.delete-btn.button-style:hover {
    color: #fff;
    background-color: #ff0000;
}
.table-resource-buttons {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    right: 0;
    top: 0;
}

.table-resource-buttons .icon-round {
    margin-left: 5px;
}

.icon-round {
    width: 30px;
    height: 30px;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(40 20 131 / 6%);
}
.table-resource-buttons .icon-round {
    margin-left: 5px;
} 

.green{
    color: green;
}
.red{
    color: red;
}
.orange{
    color: orange;
}

.table-resource-buttons .green:hover,
.table-resource-buttons .green.active {
    background: green; 
    color: var(--white-color);
}
 
.table-resource-buttons .red:hover,
.table-resource-buttons .red.active {
    background: red; 
    color: var(--white-color);
}

.table-resource-buttons .orange:hover,
.table-resource-buttons .orange.active {
    background: orange; 
    color: var(--white-color);
}
 