.selector {
    position: relative;

    width: 215px;
    color: #7e7e7e;
}

.selector ul {
    position: relative;
    display: block;
    overflow: auto;
    min-width: 138px;
    max-height: 200px;
    background: #fff;
    list-style: none;
    white-space: inherit;
    padding-right: 17px;
    width: calc(100% + 17px)
}

.selector li {
    position: relative;
    padding: 3px 20px 3px 25px;
    cursor: pointer
}

.selector li:before {
    position: absolute;
    top: 50%;
    left: 0;
    top: 4px;
    display: inline-block;
    margin-right: 9px;
    width: 17px;
    height: 17px;
    background-color: #f4f4f4;
    border: 1px solid #d5d5d5;
    content: ""
}

.selector li[data-selected="1"]:before {
    border: 1px solid #d7d7d7;
    background-color: #fff
}

.selector li[data-selected="1"]:after {
    position: absolute;
    top: 50%;
    left: 3px;
    top: 11px;
    display: inline-block;
    width: 4px;
    height: 10px;
    border-right: 2px solid;
    border-bottom: 2px solid;
    background: none;
    color: #39c9a9;
    content: "";
    -webkit-transform: rotate(40deg) translateY(-50%);
    transform: rotate(40deg) translateY(-50%)
}

.selector li:hover {
    color: #aaa
}

.selector li .total {
    position: absolute;
    right: 0;
    color: #d7d7d7
}

.selector .price-slider {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    padding-top: 17px
}

@media (min-width: 768px) {
    .selector .price-slider {
        padding-top:8px
    }
}

.selector .price-slider:before {
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: 0;
    color: #39c9a9;
    content: attr(data-currency);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

.selector #slider-range {
    width: 90%;
    margin-bottom: 30px;
    border: none;
    background: #e2f7f2;
    height: 3px;
    margin-left: 8px;
    margin-right: 8px
}

@media (min-width: 768px) {
    .selector #slider-range {
        width:100%
    }
}

.selector .ui-slider-handle {
    border-radius: 50%;
    background-color: #007bff;
    border: none;
    top: -14px;
    width: 28px;
    height: 28px;
    outline: none
}

@media (min-width: 768px) {
    .selector .ui-slider-handle {
        top:-7px;
        width: 16px;
        height: 16px
    }
}

.selector .ui-slider-range {
    background-color: #d7d7d7
}

.selector .slider-price {
    position: relative;
    display: inline-block;
    color: black;
    width: 40%;
    background-color:  #f8f9fa;;
    line-height: 28px;
    text-align: center
}

.selector .slider-price:before {
    position: absolute;
    top: 50%;
    left: 13px;
    margin-top: 0;

    content: attr(data-currency);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

.selector .show-all {
    position: relative;
    padding-left: 25px;
    color: #39c9a9;
    cursor: pointer;
    line-height: 28px
}

.selector .show-all:after, .selector .show-all:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 4px;
    margin-top: -1px;
    color: #39c9a9;
    width: 10px;
    border-bottom: 1px solid
}

.selector .show-all:after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg)
}

.selector.open ul {
    max-height: none
}

.selector.open .show-all:after {
    display: none
}


* {
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}


@media (min-width: 1200px) {
    .container{
        max-width: 1200px;
    }
}

@media (min-width: 1300px) {
    .container{
        max-width: 1300px;
    }
}

@media (min-width: 1400px) {
    .container{
        max-width: 1400px;
    }
}


label {
    cursor: pointer;
}

.item-thumb img {
    cursor: pointer;
}

/* Style the Image Used to Trigger the Modal */
#myImg {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}
.carousel {
    z-index: 1;
}
#myImg:hover {opacity: 0.7;}

/* The Modal (background) */
.my-modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (Image) */
.my-modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

/* Caption of Modal Image (Image Text) - Same Width as the Image */
.my-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Add Animation - Zoom in the Modal */
.my-modal-content, .my-cap {
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {transform:scale(0)}
    to {transform:scale(1)}
}

/* The Close Button */
.my-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.my-close:hover,
.my-close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}


@media (max-width: 768px) {
    .my-modal-content {
        width: 100%;
    }
}
@media (min-width: 768px) {
    .collapse.dont-collapse-sm {
        display: block;
        height: auto !important;
        visibility: visible;
    }
}
@media (min-width: 991px) {

    .cols-two-md {
        -moz-column-count: 2;
        column-count: 2;
    }
    .cols-three-md {
        -moz-column-count: 3;
        column-count: 3;
    }
}


.back-gradient {
    color: white;
    background: linear-gradient(90deg, #e60073, #e60000, #ff9966, #ffff66, #1affd1, #6600ff, #cc00ff, #e60073);
    background-size: 1000% 600%;
    -webkit-animation: Gradient 15s ease infinite;
    -moz-animation: Gradient 15s ease infinite;
    animation: Gradient 15s ease infinite;
    border-color: rgba(0,0,0,0);
}

.back-gradient:hover {
    background: linear-gradient(to bottom, #23bd2a, #82c500);
    color: #fff; /* Text color on hover (can be the same as the normal state) */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Shadow on hover */
}



@-webkit-keyframes Gradient {
    0% {
        background-position: -1% 0;
    }
    100% {
        background-position: 110% 0;
    }

}






@-moz-keyframes Gradient {
    0% {
        background-position: -1% 0;
    }
    100% {
        background-position: 110% 0;
    }

}





@keyframes Gradient {
    0% {
        background-position: -1% 0;
    }
    100% {
        background-position: 110% 0;
    }

}




@media only screen and (min-width: 1000px) and (max-width: 1300px) {


    .back-gradient {

        background-size: 1000% 400% !important;
        -webkit-animation: Gradient 15s ease infinite;
        -moz-animation: Gradient 15s ease infinite;
        animation: Gradient 15s ease infinite;

    }


}





@media only screen and (min-width: 768px) and (max-width: 1000px) {

    .back-gradient{


        background-size: 800% 250% !important;
        -webkit-animation: Gradient 15s ease infinite;
        -moz-animation: Gradient 15s ease infinite;
        animation: Gradient 15s ease infinite;

    }


    @-webkit-keyframes Gradient {
        0% {
            background-position: 0 0;
        }
        100% {
            background-position: 115% 0;
        }

    }






    @-moz-keyframes Gradient {
        0% {
            background-position: 0 0;
        }
        100% {
            background-position: 115% 0;
        }

    }





    @keyframes Gradient {
        0% {
            background-position: 0 0;
        }
        100% {
            background-position: 115% 0;
        }

    }


}




@media only screen and (min-width: 320px) and (max-width: 768px) {

    .back-gradient{


        background-size: 800% 200% !important;
        -webkit-animation: Gradient 12s ease infinite;
        -moz-animation: Gradient 12s ease infinite;
        animation: Gradient 12s ease infinite;

    }


    @-webkit-keyframes Gradient {
        0% {
            background-position: 0 0;
        }
        100% {
            background-position: 115% 0;
        }

    }






    @-moz-keyframes Gradient {
        0% {
            background-position: 0 0;
        }
        100% {
            background-position: 115% 0;
        }

    }





    @keyframes Gradient {
        0% {
            background-position: 0 0;
        }
        100% {
            background-position: 115% 0;
        }

    }





    }

#loginform-verifycode-image{
    cursor: pointer;
}
.btn-top-widget{
    color:white !important;
}
.btn-top-widget:hover{
    color:white !important;
}

.min-vw-250{
    min-width: 250px;
}

.link-danger {
    color: #dc3545 !important;
    text-decoration: underline;
}

.alert{
    margin: 0 auto; /* Centering Stuff */
    background-color: #FFFFFF; /* Default background */
    padding: 20px;
    border: 1px solid #eee;
    border-left-width: 5px;
    border-radius: 3px;
    margin: 0 auto;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
}


.alert-danger {
    margin-bottom: 10px;
    border-left-color: #d9534f; /* Left side border color */
    background-color: rgba(217, 83, 79, 0.1); /* Same color as the left border with reduced alpha to 0.1 */
}

.alert-info, .aler-msg {
    margin-bottom: 10px;
}

/* Custom cute alert styles */
.alert-msg {
    padding: 15px;
    border-left-color: #94b296;
    background-color: rgb(255 247 0 / 6%);
    color: #1c4a1e;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}


.alert-msg a {
    text-decoration: underline;
    color: #ff6347; /* Custom link color */
}

/* Custom info alert */
.alert-msg-info {
    background-color: #b3e0ff; /* Custom info background color */
    border-color: #2196F3; /* Custom info border color */
    color: #2196F3; /* Custom info text color */
}


/* Custom warning alert */
.alert-msg-warning {
    background-color: #ffee58; /* Custom warning background color */
    border-color: #ffc107; /* Custom warning border color */
    color: #ffc107; /* Custom warning text color */
}



.alert-danger strong {
    color:  #d9534f;
}

.alert-warning {
    border-left-color: #f0ad4e;
    background-color: rgba(240, 173, 78, 0.1);
}

.alert-warning strong {
    color: #f0ad4e;
}

.alert-info {
    border-left-color: #17a2b8;
    background-color: rgb(143 202 248 / 25%);
}

.alert-info strong {
    color: #5bc0de;
}

.alert-success {
    border-left-color: #3baf3e;
    background-color: rgba(0, 255, 6, 0.1)
}

.alert-success strong {
    color: #2b542c;
}

.navbar-brand{
    padding-top: 0px;
    padding-bottom: 0px;
}

.brand-wrap .logo, .navbar-brand .logo {
    max-height: 60px;
}

.carousel-control-prev {
    opacity: 0.1;
}

.carousel-control-next {
    opacity: 0.1;
}

.city-div {
    box-sizing: border-box;
    margin-bottom: 15px;
}

.city-selector {
    text-align: center;
    margin-bottom: 15px;
}

.city-link {
    font-size: 1.2em;
    color: #212529;
    text-decoration: none;
    border: 3px solid transparent;
    padding: 5px;
    border-radius: 5px;
    transition: all 0.9s ease;
}

.city-link:hover {
    color: #17a2b8;
    border-color: #17a2b8;
}

.city-link.active {
    color: #28A745; /* active link color (red) */
    border-color: #28A745; /* active link border color (red) */
}

.city-link.no-products {
    color: #6c757d; /* default Bootstrap color for disabled links, can be replaced with any color */
    cursor: not-allowed; /* show the 'not allowed' cursor when hovering over the link */
}

.city-link.no-products:hover {
    color: #818181; /* keep the color the same on hover */
    border-color: transparent; /* no border color change on hover */
    border: 1px solid #e7dada;
}

.city-div.no-products {
    opacity: 0.5;
}

.disabled-checkbox {
    font-size: 0.8rem;
    padding-bottom: 0px;
    margin-bottom: 0px;
}
.disabled-checkboxs-label{
    font-size: 0.9rem;
}
.site-error{
    min-height: 420px;
}

/* Custom styling for the "Buy" button */
.btn-buy {
    background: linear-gradient(to bottom, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-buy:hover {
    background: linear-gradient(to bottom, #2980b9, #3498db);
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 20px;
}

.gallery-wrap .img-big-wrap img {
    cursor: default;
    width: 100%;
    height: auto;
}

.widget-header i {
    color: #7c947e;
}
.widget-header:hover i {
    color: #d1d1d1;
}
.widget-header a:hover {
    color: white;
}
@keyframes rainbow {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

.price-old {
    font-size: 105%;
}

/* Style for Text in Content */

.content {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

h1 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
}

strong {
    font-weight: bold;
    color: #333;
}

ol {
    list-style-type: decimal;
    margin-left: 20px;
}

li {
    margin-bottom: 10px;
}

p {
    margin-top: 20px;
}

/* Link Styles */
a {
    text-decoration: none;
    color: #007bff;
    transition: color 0.3s;
}

a:hover {
    color: #0056b3;
}
.site-error{
    margin-top: 10px;
}

article img{
    max-width: 100%;
}

.custom-alert {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #000000;
    padding: 40px 80px;
    border-radius: 3px;
    z-index: 9999;
    color: white;
    display: none;
    opacity: 0.8;
    font-weight: bold;
}

.square-image-div {
    max-width: 100%;
    height: 0;
    padding-bottom: 100%; /* 1:1 aspect ratio */
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
}

#card-number {
    cursor: pointer;
    color: #275220;
    user-select: all;
    white-space: nowrap;
    font-size: 1.2rem;
}
#trc-wallet {
    cursor: pointer;
    color: #275220;
    user-select: all;
    white-space: nowrap;
}
#card-id{
    font-weight: bold;
}

.tglogin{
    margin: 0px;
    padding-bottom: 10px;
}

.tglogin a{
    color: white;
    text-decoration: none;
}
.tglogin a i{
    color: white;
}
