
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.lato{
    font-family: "Lato", sans-serif;
}

.bingo{
    font-family: 'Luckiest Guy', cursive ;
}

body {
    background-color: rgb(0, 0, 0);
    color: white;
}

.bg-gray {
    background-color: rgba(40, 36, 36, 0.985);
    border-radius: 10px;
}

.side-card-body>.card-body>div>p {
    color: black;
}

.color-orange {
    color: #F16029;
}

.item-center {
    align-items: center;
}

.bg-orange {
    background-color: #F16029;
}

.text-white {
    color: white;
}


.modal {
  background: rgba(0, 0, 0, 0.5); 
}
.modal-backdrop {
  display: none;
}



.logo {
    width: 320px;
    height: auto;
    /* object-fit: cover; */
    display: flex;
    align-self: start;
}

.pl-30 {
    padding-left: 30px;
}

.pass-icon {
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
}

.eye-icon {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
}

.decoration-none {
    text-decoration: none;
}

.form-check-input:checked {
    background-color: #F16029;
    border-color: #F16029;
}

/* for tab */

.tabs {
    display: flex;
    cursor: pointer;
    margin-bottom: 20px;
}

.tab-button {
    padding: 10px 20px;
    border: none;
    background-color: #f1f1f1;
    margin-right: 5px;
    transition: background-color 0.3s;
}

.border-2 {
    border: 2px solid white;
}

.tab-button.active {
    background-color: #F16029;
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.cstm-lh {
    line-height: 12px;
}

.border-radious-none {
    border-radius: 0px;
}

.radius-2 {
    border-radius: 5px;
    overflow: hidden;
}

.hoverRow {
    /* border: 2px solid red; */
    background-color: rgba(0, 0, 0, 0.404);
    border-radius: 10px;
}

.progress {
    height: 3px !important;
}

.bg-progress-green {
    background-color: green !important;
}

.bg-progress-red {
    background-color: red !important;
}

.bg-progress-#F16029;{
    background-color: #F16029;!important;
}

.font-12 {
    font-size: 12px;
}

.font-16 {
    font-size: 16px;
}

.icon-size {
    font-size: 15px;
}

.gap-10 {
    gap: 10px;
}

.bg-white {
    background-color: white;
}

.color-black {
    color: black;
}

.text-black {
    color: black;
}

.close {
    cursor: pointer;
}

.iti__flag-box,
.iti__country-name {
    color: black;
}

.mr-3 {
    margin-right: 10px;
}






.activecart {
    display: block !important;
    position: absolute;
    /* left: 0px;
    bottom: 30px; */
    transform: translateY(0%);
    transition: ease 2s;
    left: 0;
    z-index: 20;
}

@keyframes zoomIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.side-card-body {
    transition: opacity 0.3s ease, transform 0.3s ease;
    /* Smooth transition for opacity and transform */
}

.side-card-body.zoom-in {
    animation: zoomIn 0.5s forwards;
    /* Add the zoom-in animation */
}


@keyframes zoomOut {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(0);
        opacity: 0;
    }
}

.side-card-body {
    transition: opacity 0.3s ease, transform 0.3s ease;
    /* Smooth transition for opacity and transform */
}

.side-card-body.zoom-in {
    animation: zoomIn 0.5s forwards;
    /* Add the zoom-in animation */
}

.side-card-body.zoom-out {
    animation: zoomOut 0.5s forwards;
    /* Add the zoom-out animation */
}


@media only screen and (max-width: 600px) {
    .text-10 {
        font-size: 10px !important;
    }

    .logo {
        width: 100px;
        height: 30px;
    }
}


.orange2.active {
    background-color: #F16029;
    border: 2px solid #F16029;

}

/* Active state for #F16029; (with opacity) */
.orange1.active {
    background-color: #F16029;
    border: 2px solid #F16029;
}

/* for button  */

/* .basket{
    height: 55px;
    width: 55px;
    background-color: #F16029;
    border: none;
    border-radius: 50%;
} */

.i-flex{
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
}

.basket-position {
    position: fixed;
    right: 20px;
    bottom: 15%;
    z-index: 10;
}

.footer-posi{
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
}

.button {
    /* position: relative; */
    background-color: #F16029;
    border: none;
    color: #FFFFFF;
    padding: 20px;
    width: 80px !important;
    height: 80px !important;
    border-radius: 50%;
    text-align: center;
    -webkit-transition-duration: 0.4s;
    /* Safari */
    transition-duration: 0.4s;
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;
}

.button:after {
    content: "";
    background: #FFFFFF;
    display: block;
    position: absolute;
    padding-top: 300%;
    padding-left: 350%;
    margin-left: -20px !important;
    margin-top: -120%;
    opacity: 0;
    transition: all 0.8s;
}

.button:active:after {
    padding: 0;
    margin: 0;
    opacity: 1;
    transition: 0s
}

.pointer {
    cursor: pointer;
}

.li {
    list-style: none;
}

.form-group {
    display: inline-flex;
    margin-bottom: 12px;
    width: 49%;
}
.position-relative {
    width: 100%;
}

@media(max-width:577px){
	.form-group {
    display: flex;
    width: 100%;
}
}


@media(max-width:992px){
	.activecart{
		padding:0 40px!important;
	}
}