@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');
/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px ;
    color: #393939;
    overflow-x: hidden;
     font-family: "Josefin Sans", sans-serif;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

ul {
    margin: 0 0 20px;
    padding: 0;
    list-style-type: none;
}

p {
    font-weight: 500;
    line-height: 1.2;
}


/***** Font Files *****/

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
    src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
    font-weight: 400;
    font-style: normal
}


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.pt_8 {
    padding-top: 80px;
}

.pb_8 {
    padding-bottom: 80px;
}

.py_8 {
    padding: 80px 0px;
}

.theme_btn {
    padding: 15px 25px;
    border: unset;
    border-radius: 15px;
    color: #ffffff;
    z-index: 1;
    background: #242889;
    position: relative;
    font-size: 17px;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms;
    overflow: hidden;
    display: inline-block;
}

.theme_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 14px;
    background-color: #72d219;
    z-index: -1;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms
}

.theme_btn:hover {
    color: #000000;
}

.theme_btn:hover::before {
    width: 100%;
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-family: "Josefin Sans", sans-serif;
    font-size: 40px;
    line-height: 1.2;
    color: #fff;
    text-shadow: 1px 1px 0 #000;
    font-weight: 700;
    margin: 0 0 25px;
}


    
    


h2 {
    font-family: "Josefin Sans", sans-serif;
    font-size: 55px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 30px;
}

h3 {
    font-family: "Josefin Sans", sans-serif;
    font-size: 30px;
    line-height: 1.2;
    color: #000000;
    font-weight: 600;
    margin: 0 0 28px;
}

h4 {
    font-family: "Josefin Sans", sans-serif;
    font-size: 24px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 13px;
}

h5 {
    font-family: "Josefin Sans", sans-serif;
    font-size: 20px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: "Josefin Sans", sans-serif;
    font-size: 18px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 22px;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}


/*header css start */

.menuSec {
    padding: 25px 0;
    background: #2b2b2b;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    text-transform: capitalize;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #fff;
    padding: 0px 8px;
    font-size: 12px;
    font-family: "Josefin Sans", sans-serif;
    text-transform: uppercase;
}
.my-wallet ul li {
    font-size: 12px;
    color: #fff;
    font-family: "Josefin Sans", sans-serif;
}
/*.menu-logo a img {
    width: 80%;
}*/


.menu-logo a img {
    width: 100%;
    height: 42px;
    object-fit: contain;
    object-position: center;
}
.menu-logo{
    width:80%;
}
.menu-logo span {
    display: block;
    text-align: center;
    color: #fff;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1;
    padding-left: 13px;
}

.my-wallet-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.my-wallet ul {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}
.my-wallet ul li i {
    font-size: 35px;
    color: #fff;
}
.my-shopping span {
    position: relative;
}
.my-shopping span i {
    font-size: 30px;
    color: #fff;
}
.my-shopping span label {
        position: absolute;
        top: -14px;
        left: 8px;
        color: #fff;
        font-size: 12px;
        background: red;
        width: 15px;
        text-align: center;
        border-radius: 50px;
}


.menuSec ul li:last-child a {
    padding-right: 0px;
}

.menuSec ul li:last-child a:after {
    display: none;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #FBE376;
}

.menu-link .active a {
    color: #FBE376 !important;
}
.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
    display: none;
}

.menuSec li:hover li {
    float: none;
}

.menuSec li ul li a:hover {
    background-color: #ffffff;
    color: #000000 !important;
}

.menuSec ul ul ul {
    left: 100%;
    top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
    content: " ";
    display: table;
}

.menuSec ul:after {
    clear: both;
}

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}

.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 40px;
}

.droopdwon {
    float: left;
}

.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}


/*header css start */

.dropdown-menu {
    position: absolute !important;
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}

.banner_text h1 {
    
}
/*banner css start */


/* Tab slider fix  */

.tab_sec .tab-pane {
    display: block;
    border: 0;
    height: 0;
}

.tab_sec .tab-pane.active {
    display: block !important;
    height: auto;
}


/* Tab slider fix  */

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
    width: 100%;
}

.carousel-control.right,
.carousel-control.left {
    background: none;
    opacity: 1;
    width: 50px;
    height: 50px;
    top: initial;
    top: 40%;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
    background: rgba(255, 27, 27, 0.6);
    color: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
    position: relative;
    top: 12px;
    font-size: 20px;
    color: #fff;
    opacity: 0.5;
}

.carousel-control.right {
    right: 0px;
}

.carousel-control.left {
    left: 0px;
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 12px;
    padding: 0;
    margin: 3px!important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    border-radius: 20px;
}

.carousel-caption {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.1);
}

.carousel-indicators li {
    border: none;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    background: #fff;
    width: 12px;
    height: 12px;
    margin: 0;
}

.carousel-indicators .active {
    margin: 0;
    background-color: #28b16d;
    width: 10px;
    height: 12px;
}
.banner_text h2 {
    font-size: 80px;
    font-family: "Josefin Sans", sans-serif;
    color: #fff;
    font-weight: 700;
    margin-bottom: 5px;
    width: 80%;
}

.banner_text p {
    font-family: "Josefin Sans", sans-serif;
    font-size: 20px;
    line-height: 30px;
    width: 80%;
    margin-bottom: 50px;
}

.theme-btn-1 {
    background: #FBE376;
    padding: 20px 25px;
    font-family: "Josefin Sans", sans-serif;
    font-size: 20px;
    border-radius: 20px;
    color: #000;
    font-weight: 700;
    box-shadow: 0px 0px 10px 0 #fff;
    transition: 0.5s;
}
.theme-btn-1:hover {
    background: #000;
    transition: 0.5s;
    color: #fff;
}
.about-text p {
    font-family: "Josefin Sans", sans-serif;
    font-size: 20px;
    line-height: 35px;
    margin-bottom: 40px;
}
.about-text h2 {
    font-family: "Josefin Sans", sans-serif;
    color: #F34076;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 52px;
}
.btn-shine {
    background: linear-gradient(to right, #fff 0, #fbe376, #fbc643 33%, #fff 0%);
    background-position: 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 7s infinite linear;
    animation-fill-mode: forwards;
    -webkit-text-size-adjust: none;
    text-decoration: none;
}

@keyframes shine {
 0%,
 100% {
  background-position: 0;
 }

 10% {
  background-position: 50px;
 }

 20% {
  background-position: 100px;
 }

 30% {
  background-position: 150px;
 }

 40% {
  background-position: 200px;
 }

 50% {
  background-position: 250px;
 }

 60% {
  background-position: 300px;
 }

 70% {
  background-position: 350px;
 }

 80% {
  background-position: 400px;
 }

 90% {
  background-position: -450px;
 }
}
/*banner css end*/

.blog_sec {
    padding: 5% 0;
}


/* Tabs  */

.tab_sec .nav-tabs .nav-link.active {
    background: #242889;
    color: #fff;
}

.tab_sec .nav-tabs .nav-link {
    background: #ccc;
    border-radius: 50px;
    color: #000;
    padding: 7px 28px;
}

.tab_sec .nav-tabs {
    border: none;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}


/* Tabs  */


/*About Us Start*/


.about-sec {
    padding: 150px 0;
}
.about-image {
    position: relative;
}
.about-img-one img {
    width: 40% !important;
    height: auto !important;
}
.about-img-one {
    position: absolute;
    top: -75px;
    z-index: -1;
}
.about-img-Two img {
    width: 100% !important;
    height: auto !important;
}
.about-image img {
    width: 100%;
    height: 424px;
    object-fit: cover;
}
.about-img-Two {
    position: absolute;
    z-index: -1;
    bottom: -70px;
    right: 0;
    width: 30%;
}
.about-text label {
    margin-bottom: 20px;
}
.about-text {
    margin-left: 20px;
}



/*About Us End*/





/*Our Products Start*/

.our-products-sec {
    margin: 50px 0;
    background-image: url(../images/our-products-back.jpg);
    width: 100%;
    height: 100%;
    background-size: cover;
    padding: 170px 0;
    position: relative;
}
.our-products-sec:before {
    content: "";
    position: absolute;
    background: #00000080;
    width: 100%;
    height: 100%;
    top: 0;
}


.our-products-heading {
    position: relative;
}
.our-products-row {
    position: relative;
    z-index: 2;
    margin-top: 0px;
}
.progress-bar__wrapper ul {
    margin-bottom: 0;
}
.text-danger {
    color: #fbe376 !important;
}
.our-products-box {
    text-align: center;
    padding: 0px 15px 25px;
}
.our-products-top-img {
    position: absolute;
    width: 100%;
    z-index: 9;
    top: 0;
    fill: #F0EDEA;
}
.our-products-row .row {
    justify-content: center;
}
.our-products-heading img {
    width: 5%;
    margin-bottom: 15px;
}
.our-products-heading p {
    font-size: 21px;
    color: #fff;
    line-height: 30px;
    width: 70%;
    margin: 0 auto;
}
.our-products-heading h2 {
    font-family: "Josefin Sans", sans-serif;
    color: #fff;
    font-weight: 700;
    margin-bottom: 15px;
}
.our-products-box h2 {
    color: #fff;
    font-size: 30px;
    font-family: "Josefin Sans", sans-serif;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 30px;
}
.our-products-box ul li i {
    color: #f2b01e;
}
.our-products-box h3 {
    color: #fff;
    font-size: 22px;
    font-family: "Josefin Sans", sans-serif;
    font-weight: 700;
    margin-bottom: 30px;
}
/*.our-products-box ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}*/


/*Our Products End*/

/*How It Work Start*/

.how-it-work-sec {
    padding: 100px 0;
}
.how-it-work-box {
    background-color: #F5F5F5;
    padding: 20px 20px;
    margin-top: 25px;
    border: 1px solid #f5f5f5;
}
.how-it-work-text-box h2 {
    font-family: "Josefin Sans", sans-serif;
    color: #f34076;
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 52px;
}
.how-it-work-box h3 {
    font-family: "Josefin Sans", sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}
.how-it-work-box:hover {
    border: 1px solid #800080;
}
.how-it-work-box p {
    line-height: 25px;
    margin-bottom: 0;
}
.how-it-work-text-img img {
    width: 100%;
    height: 357px;
    object-fit: cover;
}
.how-it-work-box:hover * {
    color: #800080;
    transition: 0.5s;
}
/*How It Work End*/

/*Legal Disclaimer Start*/

.legal-disclaimer-box h2 {
    font-size: 65px;
    font-family: "Josefin Sans", sans-serif;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}
.legal-disclaimer-box p {
    margin-bottom: 40px;
    font-size: 18px;
    color: #fff;
}
.legal-disclaimer-sec .row {
    justify-content: center;
}
.legal-disclaimer-sec {
    padding: 80px 0;
    background-image: url(../images/legal-disclaimer-back.webp);
    width: 100%;
    height: 100%;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
}

.legal-disclaimer-sec:before {
    content: "";
    position: absolute;
    background: #000000bd;
    width: 100%;
    height: 100%;
    top: 0;
}
.legal-disclaimer-box {
    position: relative;
    z-index: 9;
}

/*Legal Disclaimer End*/

/*Testimonials Start*/

.testimonials-sec {
    padding: 80px 0;
    position: relative;
}

.testimonials-sec:before {
    content: "";
    position: absolute;
    background-image: url(../images/test-before.png);
    width: 365px;
    height: 240px;
    background-size: cover;
    right: 25px;
    z-index: -7;
    top: 0;
}
.testimonials-heading h3 {
    color: #F34076;
    font-size: 46px;
    margin-bottom: 0;
    margin-top: 10px;
    font-family: "Josefin Sans", sans-serif;
    font-weight: 700;
}
.testimonials-silder-items h2 {
    font-size: 18px;
    font-family: "Josefin Sans", sans-serif;
    margin-bottom: 2px;
    color: #000;
    font-weight: 700;
}
.testimonials-silder-items:after {
    content: "\f10e";
    font-weight: 900;
    font-family: 'Font Awesome 5 Free';
    top: 13px;
    color: #fff;
    z-index: 999;
    position: absolute;
    font-size: 30px;
    right: 16px;
}
.testimonials-silder-items p {
    margin-top: 50px;
    line-height: 28px;
    margin-bottom: 0;
}
.testimonials-silder-items img {
    width: 85px;
    height: 85px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px !important;
    margin: 0 auto;
}
.testimonials-sec .slick-active {
    opacity: 1.5;
}
.testimonials-row {
    margin-top: 30px;
}
.testimonials-silder-items {
    text-align: center;
    padding: 30px 30px 45px 30px;
    box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    background: #fff;
}
.testimonials-silder-items:before {
    position: absolute;
    content: "";
    background-color: #FBE376;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    z-index: 0;
    right: -30px;
    top: -25px;
}
.testimonials-sec .slick-slide {
    margin: 20px 12px;
}

/*Testimonials End*/

/*Fill Out The IRS 1099 Tax Form Start*/

.out-the-irs-tax-form-sec .row {
    align-items: center;
}
.out-the-irs-tax-form-button {
    text-align: end;
}


.out-the-irs-tax-form-button a {
    padding: 20px 40px;
}
.out-the-irs-tax-form-heading h2 {
    font-size: 50px;
    font-family: "Josefin Sans", sans-serif;
    margin-bottom: 10px;
}
.out-the-irs-tax-form-heading p {
    line-height: 30px;
    margin-bottom: 0;
    font-size: 16px;
    color: #fff;
}
.out-the-irs-tax-form-heading {
    margin-left: 100px;
}
.out-the-irs-tax-form-sec {
    padding: 80px 0;
    background-image: url(../images/out-the-irs-tax-form-back.jpg);
    width: 100%;
    height: 100%;
    background-size: cover;
}
.out-the-irs-tax-form-heading h2 {
    font-size: 50px;
    font-family: "Josefin Sans", sans-serif;
    margin-bottom: 10px;
    color: #fff;
}
/*Fill Out The IRS 1099 Tax Form End*/


/*Footer Start*/

.footer-sec {
    background-color: #2d2d2d;
    padding-top: 80px;
    background-image: url(../images/footer-back.png);
    width: 100%;
    height: auto;
    position: relative;
overflow: hidden;
}
#bg-footer{
    width: 1000px !important;
        display: none; 
}
.footer-before svg {
    width: 100%;
    height: 100%;
    filter: brightness(0) saturate(100%) invert(99%) sepia(30%) saturate(0%) hue-rotate(113deg) brightness(83%) contrast(95%);
   
}
.footer-logo h2 {
    font-size: 30px;
    color: #fff;
    font-family: "Josefin Sans", sans-serif;
    margin-bottom: 25px;
    font-weight: 700;
}
.footer-logo p {
    color: #fff;
    line-height: 25px;
    margin-bottom: 0;
}
.footer-contact h2 {
    font-size: 18px;
    font-family: "Josefin Sans", sans-serif;
    color: #fff;
    font-weight: 700;
    margin-bottom: 25px;
    margin-left: 20px;
    position: relative;
}
.footer-contact h2:before {
    content: "";
    position: absolute;
    background: #9fb5b3;
    width: 2px;
    height: 18px;
    left: -20px;
    top: 0;
}
.footer-subscrbe-newsletter h2 {
    font-size: 18px;
    font-family: "Josefin Sans", sans-serif;
    color: #fff;
    font-weight: 700;
    margin-bottom: 30px;
    margin-left: 20px;
    position: relative;
}

.footer-subscrbe-newsletter {
    margin-left: 25px;
}
.footer-subscrbe-newsletter p {
    font-size: 14px;
    color: #fff;
}
.footer-sub-news button {
    background-color: #fce789 !important;
    width: 150px;
    height: 50px;
    border-radius: 20px;
    border: none;
    font-size: 20px;
    font-weight: 600;
}
.footer-subscrbe-newsletter form {
    position: relative;
    margin-top: 25px;
}
.footer-copy-right-row {
    padding: 100px 0 30px;
}
.footer-before {
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 1;
}
.footer-sec .row {
    position: relative;
    z-index: 9;
}
.footer-copy-right-row p {
    margin-bottom: 0;
    color: #fff;
}
.footer-copy-right-row ul {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 25px;
    margin-bottom: 0;
}
.footer-copy-right-row ul li a {
    color: #fff;
    transition: 0.5s;
}
.footer-copy-right-row ul li a:hover {
    color: #9fb5b3;
     transition: 0.5s;
}
.footer-sub-news {
    position: absolute;
    top: 0;
    right: 0;
}
.footer-subscrbe-newsletter input {
    width: 100%;
    height: 50px;
    border-radius: 20px;
    border: none;
    padding: 0 25px;
    box-shadow: 0px 0px 10px 0 #fff;
}
.footer-subscrbe-newsletter h2:before {
    content: "";
    position: absolute;
    background: #9fb5b3;
    width: 2px;
    height: 18px;
    left: -20px;
    top: 0;
}
.footer-contact ul li a i {
    color: #9fb5b3;
    font-size: 20px;
}
.footer-contact ul li a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}
.footer-contact {
    margin-left: 15px;
}
.footer-contact ul {
    line-height: 35px;
    margin-bottom: 0;
}

/*Footer End*/















/*Inner About Us Start*/

.inner-banner-text h2 {
    margin-bottom: 0;
    font-family: "Josefin Sans", sans-serif;
    font-size: 50px;
    font-weight: 700;
}
.inner-banner-sec {
    background-image: url(../images/inner-banner.png);
    width: 100%;
    height: 350px;
    background-size: cover;
    display: flex;
    align-items: center;
    text-align: center;
}
.inner-banner-text h2 {
    font-size: 55px;
    color: #ffff;
}

.about-sec.inner {
    padding: 100px 0;
}

/*Inner About Us End*/


/*Latteries Start*/

.lotteries-sec .row {
    justify-content: center;
}
.lotteries-sec {
    padding: 100px 0;
}
.latteries-box {
    background: #fff;
    box-shadow: 0 0 13px 0 #00000029;
    text-align: center;
    padding: 30px 0;
    position: relative;
}
.slae-img {
    position: absolute;
    top: -10px;
    right: -10px;
}
section.product.inn-prd .latteries-box a {
    width: 45%;
}
ul.lotteries-star {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
ul.lotteries-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 800;
}
.latteries-box a {
    border: 2px solid #7f7f7f;
    width: 30%;
    margin: 0 auto;
    height: 50px;
    color: #7f7f7f;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}
ul.lotteries-price li del {
    color: #7f7f7f;
}
ul.lotteries-star li i {
    color: #9fb5b3;
}
.latteries-box h2 {
    font-size: 25px;
    font-family: "Josefin Sans", sans-serif;
    margin-bottom: 10px;
    font-weight: 700;
    color: #000;
}
.latteries-box img {
    width: 300px;
    height: 300px;
    object-fit: contain;
    margin-bottom: 25px;
}


/*Latteries End*/


/*Contact Us Start*/

.contact-us-number-box h2 {
    font-size: 40px;
    color: #000;
    font-family: "Josefin Sans", sans-serif;
    font-weight: 800;
}
.contact-us-form button {
    text-transform: capitalize;
}
.contact-us-number-box ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
}
.contact-us-number-box ul {
    margin: 0;
}

.contact-us-number-box {
    background: #fff;
    padding: 50px 40px;
    box-shadow: 0 0 12px 0 #00000052;
    border-radius: 10px;
}
.contact-us-number-box ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000;
    font-weight: 600;
    font-size: 17px;
}
.contact-us-number-box ul {
    line-height: 45px;
}
.contact-us-sec {
    padding: 100px 0;
}
.contact-us-form h2 {
    font-size: 40px;
    color: #000;
    font-family: "Josefin Sans", sans-serif;
    font-weight: 800;
    margin-left: 30px;
    position: relative;
}
.contact-us-form h2:before {
    content: "";
    position: absolute;
    background: #01785c;
    width: 3px;
    height: 60%;
    left: -20px;
    top: 8px;
}
.contact-us-form button {
    border: none;
}
.contact-us-form button {
    padding: 15px 50px;
}
.contact-us-form {
    margin-left: 20px;
    background: #fff;
    padding: 40px 30px;
    box-shadow: 0 0 12px 0 #00000052;
    border-radius: 10px;
}
.contact-us-form input {
    width: 100%;
    height: 55px;
    margin-bottom: 15px;
    border: 1px solid #e4e5e7;
    padding: 0 20px;
    border-radius: 20px;
}
.contact-us-form textarea {
    width: 100%;
    height: 200px;
    margin-bottom: 15px;
    border: 1px solid #e4e5e7;
    padding: 20px 20px;
    border-radius: 20px;
    resize: none;
}
.contact-us-sec .row {
    align-items: center;
}

/*Contact Us End*/

/*My Account Start*/

.my-account-sec {
    padding: 50px 0;
}
.login-box {
    box-shadow: 0 0 7px 0 #00000059;
    padding: 50px 50px;
}

.login-box label {
    font-size: 18px;
    color: #000;
    font-weight: 700;
    margin-bottom: 10px;
}
.login-box label span {
    color: #9fb5b3;
}
.login-box input {
    width: 100%;
    height: 55px;
    border: 1px solid #e4e5e7;
    border-radius: 10px;
    padding: 0 15px;
    text-transform: capitalize;
    margin-bottom: 20px;
}
.login-box h2 {
    font-size: 30px;
    font-family: "Josefin Sans", sans-serif;
    color: #000;
    font-weight: 900;
    margin-left: 20px;
    position: relative;
}
.login-box h2:before {
    content: "";
    position: absolute;
    background: #9fb5b3;
    width: 3px;
    height: 25px;
    top: 3px;
    left: -20px;
}
.login-box ul li input {
    width: 20px !important;
    height: 20px !important;
    margin-bottom: 0;
}

.login-box ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}
.login-box ul li label {
    margin-bottom: 0;
}
.login-box ul {
    margin-top: 10px;
    margin-bottom: 25px;
}
.login-box-button {
    margin-bottom: 20px;
}
.login-box-button {
    text-align: end;
}
.login-box a {
    color: #9fb5b3;
    font-size: 18px;
    text-transform: capitalize;
}
.my-account-sec .row {
    align-items: center;
}
.login-box button {
    background: #000;/*#9fb5b3;*/
    border: none;
    padding: 10px 30px;
    border-radius: 15px;
    color: #fff;
    font-size: 20px;
}

/*My Account End*/

/* Product Page */
.search-box ul {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    position: relative;
}
.new-arrival-box {
margin-top: 40px;
position: relative;
display: flex;
align-items: center;
text-align: center;
}

.search-box h2 {
    font-family: "Josefin Sans", sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-left: 20px;
    color: #000;
    position: relative;
    text-transform: capitalize;
    margin-bottom: 20px;
}
.range-slider h3 {
    font-family: "Josefin Sans", sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-left: 20px;
    position: relative;
    text-transform: capitalize;
}
.search-box h2:before {
   content: "";
    position: absolute;
    background: #9fb5b3;
    width: 2px;
    height: 100%;
    left: -20px
}
.catogeriesbox h3 {
margin-bottom: 0;
}
.search-box ul li button {
padding: 12px 14px;
color: #fff;
border: none;
font-size: 15px;
border-radius: 5px;
font-family: 'Montserrat';
background: linear-gradient(175deg, #040404, #626364);
}
.search-form-btn button {
    width: 100px;
    height: 45px;
    border: none;
    border-radius: 40px;
    background: #9fb5b3;
    font-weight: 600;
    color: #fff;
    font-family: "Josefin Sans", sans-serif;
}
.range-slider h3:before {
    content: "";
    position: absolute;
    background: #9fb5b3;
    width: 2px;
    height: 100%;
    left: -20px;
}
.search-box ul li input {
font-family: 'Montserrat';
color: #000;
font-weight: 500;
}
.new-arrival-box-text {
position: absolute;
width: 100%;
}
.new-arrival-box-text h2 {
font-size: 30px;
color: #fff;
}
.new-arrival-box-text p {
color: #fff;
}
.new-arrival-box:before {
content: "";
position: absolute;
background: #00000057;
width: 100%;
height: 100%;
}
.search-box {
    margin-bottom: 40px;
    background: #ffff;
    padding: 30px 25px;
    box-shadow: 0 0 4px 0 #00000052;
    border-radius: 10px;
}
.search-form-box {
    position: relative;
}
.search-form-btn {
    position: absolute;
    top: 0;
    right: 0;
}
.search-box input {
    width: 100%;
    height: 45px;
    padding: 0 20px;
    background: #f0f2f4;
    border: none;
    border-radius: 40px;
}
section.product {
padding: 100px 0;
}

.range-slider {
    box-shadow: 0 0 10px 0 #000;
    padding: 15px 15px;
}
ul.catgeroise li a {
    color: #000;
    font-weight: 600;
    font-size: 16px;
    font-family: "Josefin Sans", sans-serif;
}
.categories-box h3 {
    font-family: "Josefin Sans", sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-left: 20px;
    position: relative;
    text-transform: capitalize;
}
.categories-box {
    background: #ffff;
    padding: 30px 25px;
    box-shadow: 0 0 4px 0 #00000052;
    border-radius: 10px;
}
.categories-box h3:before {
    content: "";
    position: absolute;
    background: #9fb5b3;
    width: 2px;
    height: 100%;
    left: -20px;
}
ul.catgeroise li {
    margin-bottom: 15px;
}
ul.catgeroise {
    margin-bottom: 0;
}
.products-top-row select {
    width: 100%;
    height: 50px;
    border: 1px solid #e9ecef;
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 16px;
    color: #000;
    background-color: #e9ecef;
}
.products-right {
    padding-right: 20px;
}
.catogeriesbox {
padding: 8px 0px 8px;
}
.range-slider {
    width: 100%;
    background: #ffff;
    padding: 30px 25px;
    box-shadow: 0 0 4px 0 #00000052;
    border-radius: 10px;
    position: relative;
    margin-bottom: 40px;
}
.range-slider input {
border: none;
}
.range-slider .rangeValues {
display: block;
margin-bottom: 12px;
font-weight: 500;
color: #000000;
font-size: 16px;
font-family: poppins;
}
.range-slider input[type=range] {
-webkit-appearance: none;
width: 100%;
position: absolute;
left: 0;
border: none;
padding: 0px !important;
height: 5px;
border: 0;
}
.range-slider input[type=range]::-webkit-slider-runnable-track {
width: 100%;
height: 4px;
background: #9fb5b3;
border: none;
border-radius: 3px;
}
.range-slider input[type=range]::-webkit-slider-thumb {
-webkit-appearance: none;
height: 20px;
width: 20px;
border-radius: 50%;
background: #9fb5b3;
margin-top: -8px;
cursor: pointer;
position: relative;
z-index: 1;
/*     border: 1px solid #fff !important; */
}
.range-slider input[type=range]:focus {
outline: none;
}
.range-slider input[type=range]:focus::-webkit-slider-runnable-track {
background: #9fb5b3;
}
.range-slider input[type=range]::-moz-range-track {
width: 300px;
height: 5px;
background: #9fb5b3;
border: none;
border-radius: 3px;
}
.range-slider input[type=range]::-moz-range-thumb {
border: none;
height: 16px;
width: 16px;
border-radius: 50%;
background: #9fb5b3;
}
:root {
--dark-color: #191919;
}
.flx-fg.rangeValues {
display: flex;
align-items: center;
justify-content: space-between;
margin: 20px 0 0;
}
.price-dv-mn .btn-fil {
padding: 12px 20px;
background: #FDB0C0;
color: black;
font-size: 16px;
font-family: 'recreg';
}
.flx-fg.rangeValues .flx-fg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 30px;
    gap: 10px;
}
.range-slider a {
    border: 1px solid #9fb5b3;
    padding: 10px 15px;
    border-radius: 20px;
    color: #9fb5b3;
    margin: 0 auto;
}
.price-btn {
    text-align: center;
    margin-top: 30px;
}
.flx-fg.rangeValues .flx-fg div {
display: flex;
align-items: center;
}
.ticket_number_display_image {
  display: none !important;
}
.price-dv-mn {
padding: 0px 20px 20px 0;
/* background-color: white; */
}
.flx-fg span {
    top: 0px;
    font-size: 16px;
    font-family: "Josefin Sans", sans-serif;
    color: #000;
    font-weight: 700;
}
.products-top-row-text {
    text-align: left;
}
.products-top-row-text p {
    font-family: "Josefin Sans", sans-serif;
    font-size: 18px;
    text-transform: capitalize;
    color: #000;
    margin-left: 20px;
    position: relative;
    margin-bottom: 0;
}

.slae-img svg {
    width: 65px;
    height: 65px;
    fill: #9fb5b3;
}
.products-top-row-text p:before {
    content: "";
    position: absolute;
    background: #9fb5b3;
    width: 2px;
    height: 100%;
    left: -20px;
}
.products-top-row .row {
align-items: center;
}

.prd-top {
display: flex;
align-items: center;
justify-content: end;
}
section.product.inn-prd .product_box a.cart_btn {
background: #000;
color: #fff;
border-radius: 10px;
}
/*Products End*/




/* Product Detail Page Start */

section.product-detail-page {
    position: relative;
    padding: 80px 0 0;
}

.product-detail-head ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 50px;
    margin: 20px 0 40px;
}

.product-detail-head ul i {
    color: #ffc107;
}

.product-detail-head ul span {
    color: #ea4033 !important;
    padding-left: 15px;
    font-size: 15px;
}

ul.cost-detail h5 {
    font-size: 30px;
    color: #854b25;
    font-family: 'Poppins';
}

ul.cost-detail span {
    font-size: 24px;
    color: #868686;
    text-decoration: line-through;
    padding-left: 50px;
}

.product-details-title p {
    font-size: 16px;
    text-transform: capitalize;
    padding: 15px 0;
    color: #868686;
}

.product-detail-head h2 {
    font-size: 48px;
    font-weight: 700;
}

.product-btn {
    display: flex;
    align-items: center;
    margin: 20px 0 0;
    gap: 20px;
}

.product-details-title h5 {
    font-size: 50px;
    font-family: "Josefin Sans", sans-serif;
    color: #000;
}
.product-btn input {
    width: 150px;
    height: 50px;
    border: 1px solid #000;
    border-radius: 30px;
    color: #000;
    padding: 0 20px;
}
.product-btn a {
    width: 130px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background-color: #FBE376;
    color: #000;
    font-weight: 700;
}

section.product-detail-page .row {
    align-items: center;
}

.productdtl-mn-fr.slick-initialized.slick-slider img {
    height: 350px;
    width: 100%;
    object-fit: scale-down;
    border-radius: 0;
}

.product-details-title ul li {
    list-style: initial;
    color: #ffffff70;
}

ul.cost-detail li {
    list-style: none;
}

.product-cate p {
    font-size: 18px;
    text-transform: math-auto;
    line-height: 35px;
    margin: 0;
    color: #9fb5b3;
}

.product-cate {
    border-top: 1px solid #777;
    padding-top: 20px;
    margin-top: 30px;
    border-bottom: 1px solid #777;
    padding-bottom: 10px;
}

.nav-tabs {
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.nav-tabs .nav-link {
    margin-bottom: -1px;
    background: none;
    border: 0;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
    width: 150px;
    background: transparent;
    color: #fff;
    font-size: 18px;
    height: 60px;
    margin-right: 20px;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
    color: #fff;
    background-color: #edc36c;
    border-color: 0;
}

.input-number {
    width: 80px;
    padding: 0 12px;
    vertical-align: top;
    text-align: center;
    outline: none;
    background-color: #fff0;
    color: #000;
    border: 0;
}

.input-number,
.input-number-decrement,
.input-number-increment {
    /* border: 1px solid #fff; */
    height: 40px;
    user-select: none;
}

.input-number-decrement,
.input-number-increment {
    width: 30px;
    line-height: 38px;
    background: transparent;
    color: #a2a1a1;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* border: 1px solid #000; */
}

.input-number-decrement:active,
.input-number-increment:active {
    background: #ddd;
}

.input-number-decrement {
    border-right: none;
    border-radius: 4px 0 0 4px;
}

.input-number-increment {
    border-left: none;
    border-radius: 0 4px 4px 0;
}

.quan {
    margin-top: 20px;
    display: inline-block;
    background: #fff;
    border: 1px solid #787878;
}

a.btn1.crt-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #000;
    background: #fff;
    height: 58px;
    border-radius: 0;
    text-transform: uppercase;
    border: 1px solid #cccbcb;
    background: transparent !important;
}

a.btn1.buy-btn {
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 0;
    margin-top: 30px;
    height: 60px;
}

section.product-sec.pr-pg-1 {
    padding: 0 0 90px;
}

.product-head-pg {
    margin-bottom: 50px;
    text-align: left;
    border-bottom: 2px solid #ffffff78;
}


/* Product Detail Page End */


/* Description Product Detail Css */

.description li.nav-item {
    margin-right: 12px;
}

.description li.nav-item button {
    width: 200px;
    height: 70px;
    background-color: transparent;
    font-size: 20px;
    border-radius: 0;
    text-transform: capitalize;
    color: #9fb5b3;
    font-family: "Josefin Sans", sans-serif;
    font-weight: 700;
}

.description li.nav-item .nav-link.active {
    border: 0;
    background-color: #ebf4f2;
    font-weight: 800;
    border-radius: 0;
    font-size: 20px;
    color: #9fb5b3;
    font-family: "Josefin Sans", sans-serif;
}

.rev-btn {
    display: inline-block;
}

.description {
    padding: 80px 0;
    position: relative;
}

.rate {
    height: 46px;
    /* padding: 0 10px; */
    float: left;
    display: block;
    clear: both;
}

.rate input {
    top: 0;
    visibility: hidden;
}

.rate:not(:checked)>input {
    position: absolute;
    /* top: -9999px; */
}

.rate:not(:checked)>label {
    float: right;
    width: 0.8em;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    font-size: 35px;
    color: #ccc;
    margin: 0 3px;
}

button.btn1.tabs-btn {
    font-size: 16px;
    padding: 10px 50px;
    margin-top: 20px;
    display: block;
}

.rate:not(:checked)>label:before {
    content: '\f005';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 24px;
}

.review-btn {
    margin-top: 20px;
}

.review-btn button {
    padding: 10px 50px;
    border: none;
}

.rate>input:checked~label {
    color: #f9d71c;
}

.rate:not(:checked)>label:hover,
.rate:not(:checked)>label:hover~label {
    color: #deb217;
}

.rate>input:checked+label:hover,
.rate>input:checked+label:hover~label,
.rate>input:checked~label:hover,
.rate>input:checked~label:hover~label,
.rate>label:hover~input:checked~label {
    color: #c59b08;
}

.description .tab-content p {
    font-weight: 500;
    font-size: 15px;
    line-height: 30px;
    padding: 10px 0;
}

.prd-det-page-review-heading {
    letter-spacing: 1px;
    margin: 30px 0px;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.prd-det-page-review-heading span {
    font-size: 1.3rem;
    color: #252525;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.prd-det-page-review-box-container {
    display: block;
}

.prd-det-page-review-box {
    width: 100%;
    box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    padding: 20px;
    margin: 15px;
    cursor: pointer;
}

.profile-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
}

.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.profile {
    display: flex;
    align-items: center;
}

.name-user {
    display: flex;
    flex-direction: column;
}

.name-user strong {
    color: #3d3d3d;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.name-user span {
    color: #979797;
    font-size: 0.8rem;
}

.prd-det-page-reviews {
    color: #f9d71c;
}

.box-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.client-comment p {
    font-size: 0.9rem;
    color: #4b4b4b;
}

.prd-det-page-review-box:hover {
    transform: translateY(-10px);
    transition: all ease 0.3s;
}

.description .tab-content input {
    width: 100%;
    border: 0px;
    background-color: rgb(246, 246, 246);
    padding: 10px;
    height: 50px;
    margin-bottom: 20px;
    font-weight: 500;
    color: rgb(124, 124, 124);
    height: 55px;
    padding: 0 20px;
}

.prdtc-rvw ul {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.description .tab-content form .row {
    align-items: center;
}

.prdtc-rvw i {
    font-size: 25px;
    margin-right: 10px;
}

.description .tab-content textarea {
    width: 100%;
    border: 0px;
    background-color: rgb(246, 246, 246);
    margin-bottom: 20px;
    font-weight: 500;
    color: rgb(124, 124, 124);
    padding: 20px 20px;
}

.rev-btn h6 {
    font-family: "Josefin Sans", sans-serif;
    color: #000;
    font-size: 30px;
    margin-bottom: 10px;
}

.description .tab-content form {
    margin-bottom: 70px;
}

.prdtc-rvw i:hover {
    color: #FFC107;
}

.productdetailportion img {
    width: 100%;
    object-fit: none;
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
    border-color: transparent;
    isolation: isolate;
    background: transparent;
}

.nav-tabs {
    margin-bottom: 30px;
}

.rev-btn h6 {
    font-size: 30px;
    margin-bottom: 0px !important;
}

.product-cate p span {
    color: #000;
}
.product-detail-head p {
    margin: 0;
}

.productdtl-mn-nv img {
    object-fit: contain;
    width: 150px;
    height: 150px;
}

.slick-active {
    opacity: 1.5;
}

.productdtl-mn-fr {
    margin: 0 0 30px;
}

.product-size h5 {
    font-size: 24px;
    color: #868686;
}

.product-size ul {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.product-size ul li a {
    font-size: 15px;
    color: #000;
    font-family: 'Poppins';
    border: 1px solid #000;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.size-guide {
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid #cccbcb;
    padding-bottom: 35px;
    padding-top: 20px;
}

.size-guide h5 {
    font-size: 25px;
    margin: 0;
}

.size-guide i {
    color: #000;
    font-size: 40px;
}


.related-products-heading h2 {
    font-family: "Josefin Sans", sans-serif;
    color: #000;
    font-size: 25px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 0;
    margin-left: 30px;
    position: relative;
}
.related-products-heading h2:before {
    content: "";
    position: absolute;
    background: #d6e0df;
    width: 3px;
    left: -20px;
    height: 100%;
}
/*  Product Detail End */


  /* Inner Cart Start */
section.add-to-cart {
    padding: 5% 0;
  } 
.product-img img {
    width: 120px;
    height: 100px;
    object-fit: contain;
    border-radius: 5px;
} 
  .add-to-cart input{
    width: 100%;
    text-align: center;
    height: 60px;
    border-radius: 6px;
    border: 1px solid #ebebeb;
    font-size: 23px;
    color: rgb(0 0 0);
    font-weight: 500;
    margin-top: 24px;
    background: #f7f7f7;
    }
.add-to-cart a {
    font-size: 19px;
    display: block;
    text-align: center;
    padding-top: 9px;
    font-weight: 500;
    text-decoration: none;
    color: #000;
    font-family: "Josefin Sans", sans-serif;
}
.add-to-cart h4 {
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    color: #000;
    font-family: "Josefin Sans", sans-serif;
    margin-bottom: 0;
}
  .add-to-cart .table>tbody>tr>td, 
  .add-to-cart .table>tbody>tr>th, 
  .add-to-cart .table>tfoot>tr>td, 
  .add-to-cart .table>tfoot>tr>th, 
  .add-to-cart .table>thead>tr>td, 
  .add-to-cart .table>thead>tr>th{vertical-align: middle;}
  .total-section {
    border: none;
    padding: 27px 40px;
    border: 1px solid #00000024;
  }
  .total-section ul {
    font-family: 'Poppins';
    list-style: none;
    margin-bottom: 0;
  }
.total-section li {
    font-size: 24px;
    padding-bottom: 30px;
    font-weight: 400;
    color: #000;
    font-family: "Josefin Sans", sans-serif;
}
li.color-change {
    font-weight: 400;
    font-size: 26.96px;
    text-transform: uppercase;
    color: #000;
    font-family: "Josefin Sans", sans-serif;
}

.proceed-checkout {
    margin-top: 30px;
}

.proceed-checkout a {
    background: #9fb5b3;
    color: #fff;
    border-radius: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.total-section li.color-change span {
    font-weight: 600;
    font-size: 26.96px;
    color: #9fb5b3;
    font-family: "Josefin Sans", sans-serif;
}
  .total-section li span{
    float: right;}
  
  .ship-estimate {
    padding: 20px 40px;
    border: 1px solid #00000029;
    margin-top: 25px;
  }
.ship-estimate li {
    font-size: 27px;
    margin-bottom: 18px;
    font-weight: 500;
    font-family: 'Raleway';
    color: #333;
}
  .ship-estimate ul {
    margin-top: 20px;
    margin-bottom: 25px;
    font-family: 'Poppins';
    list-style: none;
  }
.ship-estimate .grey-style {
    font-size: 20px;
    font-weight: 500;
    font-family: 'Raleway';
    color: #333;
}
.proceed a {
    text-align: left;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 500;
    font-family: 'Raleway';
    color: #333;
}
.proceed .checkout-btn {
    padding: 15px;
    width: 100%;
    font-size: 20px;
    margin-top: 4px;
    border-radius: 0px;
    text-align: center;
    color: #ffffff;
    text-transform: uppercase;
    background: #1560a1;
    font-family: 'Raleway';
}
  .or-amazon {
    margin-top: 50px;
    position: relative;
    border: 2px solid #cecece;
    /* top: 25px; */
    padding: 30px 50px;
    border-radius: 5px;
    background: #fff;
  }
.or-amazon p {
    font-size: 17px;
    position: absolute;
    background: #f3f3f3;
    top: -18px;
    left: 85px;
    padding: 3px 20px;
    display: block;
    text-transform: uppercase;
    border: 2px solid #cecece;
    font-family: 'Raleway';
    color: #333;
}
  .or-amazon a {
    text-decoration: none;
    text-align: center;
  }
  .product-img {
    display: inline-block;
    width: 100%;
    padding: 10px 5px;
    border-radius: 10px;
  }
  .product-img img {
    width: 100%;
  }
.table > :not(:last-child) > :last-child > * {
    border-bottom-color: currentColor;
    font-size: 25px;
    font-weight: 500;
    color: #000;
    padding: 20px 18px;
    text-transform: capitalize;
    font-family: 'Raleway';
}


.table-space h3 {
    font-weight: 500;
    margin-bottom: 0px;
    font-size: 18px;
    line-height: 30px;
    color: #000;
    font-family: "Josefin Sans", sans-serif;
}
  .space .row {
    align-items: center;
  }
  thead, tbody, tfoot, tr, td, th {
    border-color: #c2c2c2;
    border-style: solid;
    border-width: 0;
  }
.total-box-heading h2 {
    font-family: "Josefin Sans", sans-serif;
    font-size: 30px;
    text-transform: capitalize;
    color: #000;
    margin-bottom: 20px;
    margin-left: 30px;
    position: relative;
}

.total-box-heading h2:before {
    content: "";
    position: absolute;
    background: #9fb5b3;
    width: 3px;
    height: 100%;
    left: -30px;
}

.cart-totals-row .row {
    justify-content: end;
    margin-top: 30px;
}
  th.qty {
    text-align: center;
  }
a.remove {
    font-size: 22px;
    width: 45px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0;
    color: #000;
}
.table-space h6 {
    font-weight: 500;
    margin-bottom: 0px;
    font-size: 18px;
    line-height: 30px;
    font-family: 'Raleway';
    color: #333;
}

.space span {
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    font-family: 'Raleway';
    color: #333;
}
  /* Inner Cart End */


/*Check Out Start*/
.banner-text.chg ul li h2 {
    color: #b8bbc6;
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 0;
    transition: 0.5s;
}
.banner-text.chg ul li i {
    font-size: 30px;
    color: #aeacbd;
}
.banner-text.chg ul {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 0;
}
.banner-text.chg ul li h2:hover {
    color: #fff;
    transition: 0.5s;
}
.checkout-coupon h2 {
    font-size: 18px;
    margin-bottom: 0;
    color: #000;
    font-weight: 800;
    letter-spacing: 0.3px;
    font-family: 'Josefin Sans', sans-serif;
}
.checkout-coupon-form {
    border: 2px dashed #ddd;
    margin-top: 25px;
    text-align: center;
    padding: 40px;
}
.checkout-coupon h2 a {
    margin-left: 10px;
    color: #9fb5b3;
    font-weight: 600;
    text-decoration: underline;
}
.checkout-coupon-form h2 {
    color: #849191;
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 30px;
}
.checkout-coupon-form ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.checkout-coupon-form ul li input {
    width: 265px;
    height: 50px;
    padding: 0 10px;
    border: 2px solid #e6e6e6;
}
.checkout-coupon-form ul li input::placeholder {
    color: #8c9a98;
    font-size: 14px;
     font-family: 'Josefin Sans', sans-serif;
}
.checkout-coupon-form ul li button {
    width: 150px;
    height: 50px;
    background: #9fb5b3;
    border: none;
    color: #fff;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
}
.checkout-main {
    margin-top: 5%;
}
.billing-details-form h2 {
    font-size: 30px;
    color: #000;
    font-weight: 600;
    margin-bottom: 30px;
    font-family: 'Josefin Sans', sans-serif;
}
.billing-details-form label {
    font-size: 15px;
    color: #000;
    margin-bottom: 5px;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
}
.billing-details-form input,
.billing-details-form select {
    height: 50px;
    padding: 0 10px;
    margin-bottom: 4%;
    border: 2px solid #e6e6e6;
    width: 100%;
}
.billing-details-form input {
    color: #000;
}
.checkout-main label span {
    color: #9fb5b3;
}
.billing-details-form input::placeholder {
    color: #8c9a98;
    font-size: 14px;
     font-family: 'Josefin Sans', sans-serif;
}
.billing-details-form select {
    color: #8c9a98;
    font-size: 14px;
   font-family: 'Josefin Sans', sans-serif;
}
.billing-details-form textarea {
    width: 100%;
    height: 200px;
    padding: 15px 10px;
    border: 2px solid #e6e6e6;
    color: #000;
    resize: none;
}

.related-products-sec {
    padding-bottom: 100px;
}
.billing-details-form textarea::placeholder {
    color: #8c9a98;
    font-size: 14px;
    font-family: Montserrat, sans-serif;
}
.your-order-box h2 {
    font-size: 28px;
    color: #242424;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
    font-family: 'Josefin Sans', sans-serif;
}
.your-order-box ul.your-order li h2 {
    font-size: 18px;
    margin-bottom: 0;
    font-weight: 500;
    font-family: 'Josefin Sans', sans-serif;
}
.your-order-box {
    padding: 30px;
    background-color: #f8f8f8;
}
.your-order-box ul li {
    display: flex;
    align-content: center;
    justify-content: space-between;
    border-bottom: 2px solid #efefef;
    padding: 17px 0;
    font-family: 'Josefin Sans', sans-serif;
}
.your-order-box li.no-padding {
    padding: 18px 0 0 0 !important;
    border: none !important;
}
.your-order-box ul li span {
    color: #84868d;
    font-size: 16px;
}
.your-order-box ul li h3 {
    font-size: 16px;
    margin-bottom: 0;
    font-weight: 500;
    font-family: 'Josefin Sans', sans-serif;
    color: #9fb5b3;
}

h3.subtotal {
    color: #000 !important;
}
.your-order-box h4 {
    margin-bottom: 0;
    font-size: 22px;
    color: #9fb5b3;
}
.your-order-box ul.assistance {
    padding: 5px 15px;
    margin-bottom: 10px;
    border-bottom: 1px solid #dedede;
    padding-bottom: 0;
}
.your-order-box ul.assistance li {
    border: none;
}
.check-out-sec {
    padding: 100px 0;
}
.your-order-box p {
    line-height: 25px;
    color: #000;
    letter-spacing: 0.3px;
    margin-bottom: 20px;
    padding: 5px 10px;
}
ul.assistance p {
    background: #fff;
    padding: 20px 10px;
}
ul.assistance label {
    margin-bottom: 10px;
}
.your-order-box p a {
    color: #333;
    font-weight: 700;
}
.your-order-box button {
    width: 100%;
    height: 50px;
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    border: none;
    font-family: 'Josefin Sans', sans-serif;
    background: #9fb5b3;
    border-radius: 25px;
}
.check-out-button-debit button {
    background: #2c2e2f;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.check-out-paypal {
    text-align: center;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    color: #777;
    font-weight: 600;
}
.check-out-button-debit {
    margin-top: 20px;
}
ul.assistance li h2 {
    border: 2px solid #fff;
    font-size: 16px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    color: #fff;
}
ul.your-order {
    background-color: #fff;
    padding: 20px 20px;
}

.your-order-box ul li p {
    color: #fff;
    line-height: 23px;
    margin-bottom: 0;
    padding-top: 0;
    border: none;
}
.checkout-coupon-form.faq__panel {
    display: none;
}
.checkout-coupon-form.faq__panel.faq__panel_active {
    display: block;
}

/*Check Out End*/







 .slot-machine > img {
     display: block;
     position: relative;
     right: -20px;
}

.slotwrapper {
    overflow: hidden;
    height: 255px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 330px;
    margin: 0 auto;
    border-radius: 5px;
}
.slotwrapper ul {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    width: 310px;
    height: 162px;
    text-align: center;
}
.slotwrapper ul li img {
    vertical-align: top;
}
.slotwrapper > ul > li {
    font-size: 70px;
    color: #ffff;
    position: relative;
    z-index: 1;
    margin-top: 4px;
}

/*.slotwrapper > ul > li:before {
    content: "";
    position: absolute;
    background-image: url(../images/ticket.png);
    width: 355px;
    height: 190px;
    bottom: 0;
    top: 20px;
    background-size: cover;
    right: 0;
    left: 0;
    margin: 0 auto;
    z-index: -1;
}*/

.slot-machine-btn {
    position: absolute;
    top: 5px;
    right: 19%;
    transform: translate(0, -50%);
    background: transparent;
    border: none;
    margin-top: 70px;
    transition: 0.4s all ease-in-out;
    width: 9%;
    margin-right: 9px;
}

.img-fluid {
    width: 100%;
    height: auto;
}
ul.product-star {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.slot-machine-btn.clicked {
    transform: translate(0, -50%) rotateX(190deg);
}
button#btn-example1:hover > img {
    filter: drop-shadow(2px 4px 6px yellow);
}
button#btn-example1 > img {
    transition: 0.4s all ease-in-out;
   user-select: none;
}
:not(button) img {
  pointer-events: none;
}


.our-products-games-img img {
    width: 50%;
}
.our-products-games-img img {
    width: 647px;
}
.our-products-games-box {
    position: relative;
    margin-top: 25px;
}
.slot-machine {
    position: absolute;
    top: 217px;
    right: 0;
    left: 0;
}

.slotwrapper ul li img {
    width: 370px;
    height: 162px;
    object-fit: contain;
}






#confetti{
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.leverimgcss {
    transform: rotateX(50deg);
    transition: 0.5s;
}




.progress-bar__wrapper {
    margin-top: 10px;
}

progress {
    width: 50%;
    height: 15px;
    border-radius: 50px;
    background-color: #ddd;
    transition: width 300ms ease;
}
progress[value]::-webkit-progress-bar {
  width: 100%;
  height: 15px;
  border-radius: 50px;
  background-color: #ddd;
  transition: width 300ms ease;
}
progress[value]::-webkit-progress-value {
  width: 0;
  border-radius: 50px;
  background-color: #e3ae00;
  transition: width 300ms ease;
}
.progress-bar__value {
    font-size: 45px;
    font-family: 'Josefin Sans', sans-serif;
    color: #fff;
}
.raising-funds-row {
    text-align: center;
    position: relative;
    z-index: 9999;
}
.raising-funds-box h2 {
    font-family: "Josefin Sans", sans-serif;
    color: #fff;
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 2px;
    margin-top: 0;
}

.raising-funds-box {
    position: absolute;
    bottom: 40px;
    width: 100%;
}

.raising-funds-box h2 span {
    color: #e1ac00;
}

ul.progress-bar-number {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    margin-top: 10px;
    gap: 30px;
}

.raising-funds-row {
    margin-top: 30px;
}
ul.progress-bar-number {
    margin-bottom: 0;
}


.slotwrapper ul {
    top: -170px;
}



/*testimonials scrollbar*/
.testimonial_para {
    height: 170px;
    overflow-y: scroll;
}


/* width */
.testimonial_para::-webkit-scrollbar {
  width: 10px;
}

/* Track */
.testimonial_para::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
.testimonial_para::-webkit-scrollbar-thumb {
  background: #fce789 !important;
}

/* Handle on hover */
.testimonial_para::-webkit-scrollbar-thumb:hover {
  background: #033e83;
}
/*testimonials scrollbar*/


.btn-dromwkm {
    position: absolute;
    width: 108px;
    right: 245px;
    top: 288px;
    cursor: pointer;
}

.animtbnbutmn{
    animation: amnity 0.3s linear;
}
@keyframes amnity{
    0%{
        transform: none,
    }
    50%{
        transform: scaleY(0.7) translateY(15px) rotateY(2deg);
    }
    100%{
        transform: none,
    }
}

.btn-dromwkm:hover img {
    filter: drop-shadow(2px 4px 6px yellow);
}




@keyframes pulse-animation {
  0% {
    filter: drop-shadow(0 0 0 red);
    /*box-shadow: 0 0 0 0px red;*/
  }
  100% {
    filter:  
  drop-shadow(1px 1px 2px red)
  drop-shadow(-1px -1px 2px red)
  drop-shadow(1px -1px 2px red)
  drop-shadow(-1px 1px 2px red)
  drop-shadow(1px 0px 2px red) 
  drop-shadow(-1px 0px 2px red)  
  drop-shadow(0px 1px 2px red) 
  drop-shadow(0px -1px 2px red);
  }
}
li.visibleLi {
    animation: pulse-animation 2s infinite;
}

/*Prize Start*/

div#prize-display {
    background: #fff;
    text-align: center;
    padding: 30px;
    box-shadow: 0 0 14px 0 #0000004f;
    width: fit-content;
    margin: 40px auto 0;
}

div#prize-display h3 {
    margin: 0;
}

.prize-box {
    text-align: center;
    background: #fbe376;
    box-shadow: 0 0 20px 0 #00000038;
    padding: 60px;
    width: 80%;
    margin: 0 auto 0;
    cursor: pointer;
}

.box-content {
    font-size: 20px;
    color: #000;
}

.prize-head h2 {
    color: #f34076;
}

div#prize-display p {
    font-size: 30px;
    line-height: 40px;
    margin: 0;
}

section.priza-sec {
    padding: 60px 0;
}

/*Prize Start*/


section.lottery-bottom-sec {
    padding: 100px 0;
    position: relative;
}

section.lottery-bottom-sec:before {
    content: '';
    position: absolute;
    background-image: url(https://theraffleticket.com/assets/images/money-back.webp);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background-blend-mode: overlay;
    background-color: #0000007a;
     background-attachment: fixed; 
}



div#countdown ul {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: center;
}

div#countdown ul li {
    color: #fff;
}

div#countdown ul li span {
    display: block;
}

.recent-txt h3 {
    font-size: 50px;
    color: #fff;
    line-height: 50px;
    margin: 0 0 10px;
}

.recent-txt p {
    font-size: 16px;
    color: #fff;
    margin: 0 0 30px;
}

section.lottery-bottom-sec .row {
    background: #f340766b;
    padding: 20px;
    border-radius: 10px;
}

.watch-img img {
    width: 100%;
}


.our-products-games-img{
    position: relative;
}
.our-products-games-img .jackpot_prize {
    position: absolute;
    /*left: 40%;*/
    left: 50%;
    transform: translateX(-50%);
    top: 22%;
    color: #fff;
    font-size: 24px;
    /*background: #f9bf31;*/
    background: red;
    box-shadow: 0 8px 16px 0 #000, 0 6px 20px 0 rgb(0 0 0);
    line-height: 1;
    padding-bottom: -4px;
    padding: 8px 15px 4px;
    border-radius: 20px;
}




.about_page .about-text h2{
    color: #000;
}
.review_page .testimonials-heading h3{
    color: #000;
}
.how_it_page .how-it-work-text-box h2{
    color: #000;
}


.bounus-prize-main h4 {
    font-size: 30px;
    color: #ffc73c;
}

.bounus-prize-main {
    position: absolute;
    left: 61%;
    transform: translateX(-50%);
    top: 23%;
	display: none;
}

span.bounus-prize {
    color: #fff;
    font-size: 24px;
    /* background: #f9bf31; */
    background: red;
    box-shadow: 0 8px 16px 0 #000, 0 6px 20px 0 rgb(0 0 0);
    line-height: 1;
    padding-bottom: -4px;
    padding: 8px 15px 4px;
    border-radius: 20px;
}


.bonus-prize-text {
    text-align: center;
    font-size: 25px;
    font-weight: 800;
    color: #ffcc00;
    margin-top: 13px;
    margin-bottom: -9px;
}
.latteries-box a i {
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
}

@media only screen and (min-width: 300px) and (max-width: 519px) {
    .col-lg-6.col-md-6.col-6.respwidth {
    width: 100%;
}
}


.ticket_checkout{
    padding:80px 0;
}
section.ticket_checkout .card-body table {
    margin-bottom: 0;
}
section.ticket_checkout .card-body {
    padding: 0;
}
section.ticket_checkout button.accordion-button {
    color: #000;
    background: #FBE376;
}

section.ticket_checkout button.accordion-button::after {
    filter: brightness(0);
}
section.ticket_checkout .accordion-button:focus {
    z-index: 3;
    border-color: transparent;
    outline: 0;
    box-shadow: none !important;
}
section.ticket_checkout div#accordionExample .card {
    border: none;
}
.ticket_cart{
    padding:80px 0;
}
video.autoplay-video {
    width: 100%;
    height: 430px;
    object-fit: cover;
}
.about-sec-home .row {
    align-items: center;
}

.about-sec-home .about-img-one {
    position: absolute;
    top: -185px;
    z-index: -1;
}
.about-sec-home .about-img-Two {
    position: absolute;
    z-index: -1;
    bottom: -90px;
    right: 0;
    width: 30%;
}


.player {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    /* box-shadow: 0px 10px 0px -3px rgba(0, 0, 0, 0.2); */
    position: relative;
    overflow: hidden;
    background: #000000;
}
.player:fullscreen {
	padding-bottom: 100vh;
}
.player:-webkit-full-screen {
	padding-bottom: 100vh;
}
.player:-moz-full-screen {
	padding-bottom: 100vh;
}
.player:-ms-fullscreen  {
	padding-bottom: 100vh;
}
.player video {
	width: 100%;
	height: auto;
	position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.controls {
	padding: 0;
	position: absolute;
	bottom: -80px;
	width: 100%;
	height: 48px;
	box-sizing: border-box;
	background: linear-gradient(
		180deg,
		rgba(37, 37, 37, 0) 10%,
		rgba(37, 37, 37, 0.6) 80%
	);
	transition: all 0.2s ease-in 5s;
}
.player:hover .controls {
	bottom: 0;
	transition: all 0.2s ease-out;
}
.time {
	position: absolute;
	right: 30px;
	bottom: 100%;
	padding-bottom: 14px;
}
.progress {
	height: 8px;
	width: calc(100% - 40px);
	background: rgba(60, 60, 60, 0.6);
	margin: auto;
	border-radius: 6px;
	position: absolute;
	left: 20px;
	bottom: 100%;
	transition: height 0.1s ease-in-out;
}
.progress:hover {
	height: 10px;
}
.progress-filled {
	background: #FBE376 ;
	width: 0%;
	height: 100%;
	border-radius: 6px;
	transition: all 0.1s; 
}
.controls-main {
	width: calc(100% - 40px);
	margin: auto;
	height: 100%;
	display: flex;
	justify-content: space-between;
}
.controls-left,
.controls-right {
	flex: 1;
	display: flex;
	align-items: center;
	overflow: hidden;
}
.controls-left {
	margin-left: 10px;
}
.controls-right {
	margin-right: 10px;
	justify-content: flex-end;
}
.volume {
	display: flex;
	align-items: center;
}
.volume-btn {
	margin-right: 10px;
}
.volume-btn #volume-off, .volume-btn #volume-high {
	opacity: 0;
}
.volume-btn.loud #volume-high{
	opacity: 1;
}
.volume-btn.muted #volume-off {
	opacity: 1;
}
.volume-btn.muted #volume-high, .volume-btn.muted #volume-low {
	opacity: 0;
}
.volume-slider {
	height: 8px;
	width: 80px;
	background: rgba(60, 60, 60, 0.6);;
	border-radius: 6px;
	position: relative;
}
.volume-filled {
	background: var(--main);
	width: 100%;
	height: 100%;
	border-radius: 6px;
	transition: width 0.2s ease-in-out;
}
.volume-filled:hover, .play-btn:hover.play-btn:before, .play-btn:hover.play-btn:after{
	background: #FBE376 ;
}
button {
}
.play-btn {
	width: 30px;
	height: 30px;
	position: relative;
	margin: auto;
	transform: rotate(-90deg) scale(0.8);
	transition: -webkit-clip-path 0.3s ease-in 0.1s, shape-inside 0.3s ease-in 0.1s,
		transform 0.8s cubic-bezier(0.85, -0.25, 0.25, 1.425);
}
.play-btn.paused {
	transform: rotate(0deg);
}
.play-btn:before,
.play-btn:after {
	content: "";
	position: absolute;
	background: white;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	transition: inherit;
}
.play-btn:before {
	-webkit-clip-path: polygon(0 10%, 100% 10%, 100% 40%, 0 40%);
	shape-inside: polygon(0 10%, 100% 10%, 100% 40%, 0 40%);
}
.play-btn:after {
	-webkit-clip-path: polygon(0 60%, 100% 60%, 100% 90%, 0 90%);
	shape-inside: polygon(0 60%, 100% 60%, 100% 90%, 0 90%);
}
.play-btn.paused:before {
	-webkit-clip-path: polygon(10% 0, 90% 51%, 90% 51%, 10% 51%);
	shape-inside: polygon(0 0, 100% 51%, 100% 51%, 0 51%);
}
.play-btn.paused:after {
	-webkit-clip-path: polygon(10% 49.5%, 80% 49.5%, 90% 49.5%, 10% 100%);
	shape-inside: polygon(10% 49.5%, 80% 49.5%, 90% 49.5%, 10% 100%);
}
button:focus {
	outline: none;
}
.speed-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	margin-right: 20px;
	text-align: center;
}
.speed-list li {
	color: var(--main);
	padding: 5px;
	cursor: default;
}
.speed-list li:hover,
.speed-list li.active {
	color:#FBE376 ;
	font-weight: bold;
}
.fullscreen {
	display: flex;
	justify-content: center;
}

#video-canvas {
	display: none;
}