:root {
    --light_gray: #edeef0;
    --text_dark_gray: #5f5f5f;
}
*{
    -webkit-appearance: none; 
}

html,
body {
    margin: 0;
    padding: 0;
    background: #f8f9fa;
    color: #626262;
}

a:hover {
    text-decoration: none;
}


/* Navbar css start */

.navbar {
    background: #28738a;
    border: #1f505f;
}

.nav-item a {
    text-transform: uppercase;
}

.navbar a {
    color: white;
}

.right-side-link {
    text-decoration: none;
    margin-right: 10px;
}

.right-side-link:hover {
    color: white;
    text-decoration: overline;
}

.nav-link:hover {
    color: white;
}


/* Navbar css end */


/* Error or success class start */

.err {
    font-size: 15px;
    text-transform: inherit;
    color: red;
}

.succ {
    font-size: 15px;
    font-weight: 500;
    text-transform: inherit;
    color: #1e7124;
}


/* Error or success class end */


/* Topic css start */

.search_box {
	border: 1px solid #c7c7c7;
    padding: 8px;  
    width: 100%;
	height: 38px;
    border-radius: 0px;
}

.search_box:focus {
    outline: none;
}

.custom-select {
    cursor: pointer;
    position: relative;
    color: black;
}

.select-tag {
	border: 1px solid #c7c7c7;
    width: 99%;
    padding: 5px;
    color: #999999;
    background-color: #fff;
	text-indent: 20%;
}

/*
.select-tag:hover {
    border: 1px solid black;
} */

.select-tag:focus{
    outline: none;
}

.post-wrapper {
    /* margin-bottom: 30px; */
}

.post-thumbnail {
    width: 100%;
    height: 180px;
}

.image-custom:hover {
    border: 1px solid #dedede;
    cursor: pointer;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
}

.post-content h2 {
    text-align: center;
    font-size: 20px;
    padding: 8px 0;
    margin-bottom: 0;
}

.buttons {
    z-index: 999;
    position: fixed;
    top: 25%;
    right: -42px;
    width: 142px;
    display: inline-grid;
}


.custom-btn {
    margin-bottom: 5px;
    border-radius: 5px 0px 0px 5px;
}

.btn-filter {
    color: white;
    background: #288a7c;
    border: #123a34;
}

.btn-filter:hover {
    background: #1e6359;
    border: #123a34;
    color: white;
}


/* Topic css end */


/* Reset Select */

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    position: relative;
}

select option {
    padding: 10px;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    /* background-color: #f9f9f9; */
}

.selectBox::after {
    content: "\25BC";
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 36px;
    padding: 0;
    right: 0;
    bottom: 0;
    background-color: #e9ecef;
    color: #afb0b1;
    font-size: 10px;
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
    border-top: 1px solid #ced4da;
    border-right: 1px solid #ced4da;
    border-bottom: 1px solid #ced4da;
    cursor: pointer;
    pointer-events: none;
    -webkit-transition: 0.25s all ease;
    -o-transition: 0.25s all ease;
    transition: 0.25s all ease;
}

.subheadline {
    font-size: 18px;
    margin: 20px 0 20px 0;
    padding-bottom: 5px;
    border-bottom: 1px solid #ddd;
    color: #626262;
    font-weight: 500;
    line-height: 35px;
}

.checkbox input[type="checkbox"] {
    opacity: 0;
    width: 0;
    height: 0;
}

input:not(:placeholder-shown) {
    /* background-color: #ffffff !important; */
}

input[type="radio"],
input[type="checkbox"] {
    margin-top: 1px 0 0;
    line-height: normal;
    cursor: pointer;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.radio label,
.checkbox label {
    display: inline-block;
    cursor: pointer;
    position: relative;
    padding-left: 25px;
    margin-right: 15px;
    min-width: 17px;
    min-height: 17px;
    line-height: 20px;
    margin-bottom: 0;
    transition: border 0.2s linear 0s, color 0.2s linear 0s;
}

.radio label:before,
.checkbox label:before {
    -webkit-box-sizing: inherit;
    box-sizing: border-box;
    content: "";
    display: inline-block;
    width: 17px;
    height: 17px;
    margin-right: 10px;
    position: absolute;
    left: 0px;
    background-color: #fff;
    border: 1px solid #d0d0d0;
}

.checkbox label:before {
    top: 1.4px;
    border-radius: 3px;
    transition: border 0.2s linear 0s, color 0.2s linear 0s;
}

.checkbox label::after {
    display: inline-block;
    width: 11px;
    height: 11px;
    position: absolute;
    left: 3.5px;
    top: 0px;
    font-size: 11px;
    transition: border 0.2s linear 0s, color 0.2s linear 0s;
}

.checkbox input[type="checkbox"]:checked+label::after {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #fff;
}

.checkbox input[type="checkbox"]:checked+label:before {
    border-width: 8.5px;
}


/* Blog Section Start */

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.blog-breadcrums {
    margin: 15px 0;
}

.blog .blog-breadcrums ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 12px;
}

.blog .blog-breadcrums ul li:nth-child(even) {
    margin: 0 8px;
}

.blog .blog-head {
    margin: 15px 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.blog .blog-prev {
    width: 50px;
    height: 50px;
    background-color: var(--light_gray);
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.blog a .blog-prev {
    font-size: 34px;
    color: var(--text_dark_gray);
}

.blog .blog-title h1 {
    font-size: 22px;
    margin-left: 15px;
    margin-bottom: 0;
}

.blog .blog-body .blog-image img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    /* object-fit: cover; */
}

.blog .blog-like-comments {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.blog .blog-like-comments a {
    color: var(--text_dark_gray);
    transition: all .3s ease-in-out;
}

.blog .blog-like-comments a:hover {
    color: black;
}

.blog .blog-like-comments span:nth-child(1) {
    margin-right: 8px;
}

.blog .blog-like-comments span i {
    margin-left: 5px;
}

.blog .blog-share {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: 26px;
}

.blog .blog-share a {
    padding: 5px;
    margin: 0 3px;
}

.blog .blog-share a i {
    color: gray
}

.blog .blog-tags p {
    margin-bottom: 0;
    font-weight: 600;
}

.blog .blog-tags p span {
    margin-left: 5px;
    color: red;
    font-size: 14px;
}

.blog .blog-description {
    margin: 15px 0;
    padding-right: 100px;
    line-height: 18px;
    font-size: 16px;
    color: var(--text_dark_gray);
}

.blog .blog-description p {
    margin-bottom: 0;
}

.blog .blog-comments{
    margin-top: 50px;
}

.blog .blog-comments h1 {
    font-size: 25px;
    margin-bottom: 0;
    line-height: 12px;
}

.blog .blog-comments .comment {
    display: flex;
    justify-content: flex-start;
    background: #f3f3f3;
    padding: 10px;
    margin-bottom: 10px;
    
}

.blog .blog-comments .comment .comment-content {
    margin-left: 15px;
}

.blog .blog-comments .comment .comment-content .user-name h6 {
    margin-bottom: 0;
    font-size: 22px;
    text-transform: capitalize;
}

.blog .blog-comments .comment .comment-content .comment-date {
    color: var(--text_dark_gray);
    font-size: 13px;
}

.blog .blog-comments .comment .comment-content .comment-rating {
    color: red;
    margin-top: 15px;
}

.blog .blog-comments .comment .comment-content .comment-text p {
    margin-bottom: 0;
}

.blog .blog-comments .comment .user-image img {
    width: 60px;
    height: 60px;
    border-radius: 100px;
}

.blog .blog-review {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.blog .blog-review .rating {
    color: #ee5863 !important;
    margin-bottom: 30px;
}

.blog .blog-review .comment form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.blog .blog-review .comment form button {
    margin-top: 10px;
    border: none;
    background: #ee5863 !important;
    padding: 5px 40px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
}


/* Blog Section End */


/* Blog Grid */

.blog_grid .blog_grid_title h2 {
    font-size: 20px;
    color: #616161;
    padding: 10px 0;
    text-transform: capitalize;
}

.blog_grid_created_on img {
    width: 30px;
    height: 30px;
    border-radius: 100px;
}

.blog_grid_created_on p:nth-child(2) {
    font-size: 15px;
    font-weight: 500;
    color: red;
    margin: 0 7px;
}

.customer_name{
    font-size: 12px;
    font-weight: 500;
    color: #ee5863;
    margin: 0 7px;
    float: right;
    margin-bottom: 12px;
}

.card .heading {
    font-size: 14px;
}
.card i{
    color: #5f5f5f;
    margin-left: 10px;
}

.blog_grid_image img{ 
    height: 160px;
    width: 100%;
    border-radius: 10px;
    padding: 3px 3px;
}

.blog_grid_created_on p {
    font-size: 11px;
    color: gray;
}

.blog_grid_title{
    margin-left: 10px;
}

.blog_grid_created_on {
    display: flex;
    justify-content: flex-end;
    margin-right: 10px;
    /* align-items: center; */
}

.blog_grid_desc p {
    font-size: 14px;
    line-height: 18px;
}

.blog_grid_desc a {
    color: gray;
    transition: .3s ease-in-out;
}

.login{
    background: #ee5863;
    border: 1px solid #994046;
}

.login:hover{
    background: #ee5863;
    border: 1px solid #994046;
}

.signUp{
    background: #ee5863;
    border: 1px solid #994046;
}

.signUp:hover{
    background: #ee5863;
    border: 1px solid #994046;
}

.signUp.active {
    background: #ee5863;
    border: 1px solid #994046;
  }


.blog_grid_desc a:hover {
    color: rgb(77, 76, 76);
}

.blog_grid {
    border: 1px solid gray;
    border-radius: 8px;
}

.blog_grid .blog-like-comments {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 5px;
}

.blog_grid .blog-like-comments a {
    color: var(--text_dark_gray);
    transition: all .3s ease-in-out;
}

.blog_grid .blog-like-comments a:hover {
    color: black;
}

.blog_grid .blog-like-comments span:nth-child(1) {
    margin-right: 8px;
}

.blog_grid .blog-like-comments span i {
    margin-left: 5px;
}


.customSearch{
    border: 1px solid rgb(192, 192, 192);
    width: 100%;
    padding: 5px 10px;
    border-radius: 2px;
    color: #9999a9;
}

.customSearch::placeholder{
    color: rgb(192, 192, 192);
}

#suggest_list{
    background: white;
    padding: 10px;
    overflow: hidden;
    display: none;
    cursor: pointer;
}

.welcome{
    padding-left: 30px;
    text-align: left;
    font-size: 30px;
}


.color-rosa{
    color: #ee5863 !important;
}

/* .mt-2, .my-2 {
    margin-top: .5rem !important;
}

.pl-2, .px-2 {
    padding-left: .5rem !important;
}
.pr-2, .px-2 {
    padding-right: .5rem !important;
} */

.margenes-listings {
    padding: 0px 10px 0px 10px;
}

.item-listing.grid .item {
    margin-bottom: 10px;
}

.item-listing .item {
    overflow: hidden;
    /* box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 10%); */
    border: 1px solid #eaebec;
    background-color: #fff;
    display: block;
    width: 100%;
    border-radius: 10px;
    position: relative;
    text-align: left;
}

.item-listing .item .item-image {
    position: relative;
    margin-bottom: 10px;
}

.item-image img{
    width: 100%;
    height: 145px;
    object-fit: cover;
    object-position: center;
    padding: 5px;
}
.item-listing .item .item-info{
    padding: 5px 10px;
}
.item-listing .item .item-image > a {
    display: block;
    opacity: 1;
    color: #626262;
}
a, a:focus, a:hover, a:active {
    outline: 0 !important;
    text-decoration: none;
}

.deal-tag {
    margin-top: 25px;
    margin-bottom: 20px;
}

.deal-tag p {
    margin-bottom: 0;
    font-weight: 600;
}

/*.item-listing .item .item-image > a:not(.save-item):before {*/
/*    opacity: 0.9;*/
    /* background: linear-gradient(to bottom, transparent 65%, #2f2f2f); */
/*    transition: opacity .3s;*/
/*    position: absolute;*/
/*    height: 100%;*/
/*    width: 100%;*/
/*    display: block;*/
/*    top: 0;*/
/*    left: 0;*/
/*    content: "";*/
/*}*/

.item-listing .item .item-image .item-meta {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    color: #FFF;
}

.item-listing .item .item-price {
    color: #FFF;
    font-size: 15px;
    font-weight: bold;
}

.item-listing .item .item-badges {
    position: absolute;
    top: 0;
    z-index: 500;
    right: 0;
    width: 100%;
    font-size: 13px;
    padding: 0px;
    overflow: hidden;
    height: 100px;
}

.item-listing .item .item-badges .item-badge-left2 {
    background-color: rgba(0,0,0, 0.5);
    padding: 5px 10px;
    color: white;
    float: left;
    left: 0px;
    top: 0px;
    position: relative;
    text-align: center;
    margin: 0;
    border-radius: 5px 3px 10px 0px;
}

.sin-margenes {
    padding: 0px;
    margin: 0px;
}

.puntos-suspensivos {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.item-listing .item .item-title {
    font-size: 16px;
    line-height: 22px;
    margin-top: -3px;
}

.gris-oscuro {
    color: #4c4b4b;
}

.font-weight-500 {
    font-weight: 500;
}

.size-14 {
    font-size: 14px !important;
}

.pt-1, .py-1 {
    padding-top: .25rem !important;
}

.tamaño-delivery-type {
    font-size: 12px;
}

.color-gris {
    color: gray !important;
}

.item-listing .item .item-details-i {
    font-size: 14px;
}

.color-rosa-corp {
    color: #fc239f !important;
}

.d-md-block {
    display: block!important;
}

.float-right {
    float: right !important;
}

.seller-caption {
    padding: 0px;
    margin: 0px;
    line-height: 15px;
    text-align: center;
    width: 45px;
}

.imgRedonda {
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

.link-proveedora {
    font-size: 10px;
    color: #ee5863;
    text-align: center;
}

.display_loading{
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, 50%);   
}

.post_comm a{
    color: #626262;
}

.likes{
    margin-top: 10px;
}

.search_btn{
    border-radius: 0px 5px 5px 0px;
    background: #626262 !important;
	font-weight: bold;
    text-transform: capitalize;
}

.name {
    color: #ee5863;
    font-size: 11px;
}

.user_image {
    margin-top: -5px;
}

.user_image .imgRedonda{
    width: 30px;
    height: 30px;
    border: 2px solid #ccc;
}

.content .content-p{
    max-height: 90px;
    overflow: hidden;
    color: gray !important;
    font-size: 12px;
    margin-bottom: 0px !important;
}

.content a{
    color: gray;
    font-size: 12px;
}


.btn-comment{
    color: gray;
    border: 1px solid;
    padding: 5px;
    cursor: pointer;
    font-size: 12px;
}

.btn-comment:hover{
    background: gray;
    color: white;
}

.deal-tag a{
    text-decoration: underline;
    font-size: 12px;
    font-weight: 600;
    color: #28738a;
}


.videos video{
    padding: 2px;
}

.videos .video_div{
    margin-left: 6px;
}
/* Custom Filter */
.post-filters{
    /* border-bottom: 2px solid var(--text_dark_gray); */
}
.custom-filter ul{
    display: flex;
    align-items: center;
}
.custom-filter ul li a{
    font-size: 16px;
    color: #4c4b4b; /*#303030 */
    margin-right: 6px;
    transition: all 0.2s ease-in-out;
    font-weight: 500;
	text-transform: capitalize;
	/*border: 1px solid;*/
    /*margin-bottom: 2px;*/
    /*border-radius: 5px;    */
}

.custom-filter ul li a:hover{
    color: black;
}

.dropdown-toggle::after{
    display: none;
}
.custom-filter .nav-item.dropdown.show .dropdown-toggle::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    margin-left: 0;
    vertical-align: .255em;
    content: "";
    color: gray;
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}
.custom-filter .dropdown-item.active, .dropdown-item:active {
    color: gray;
    text-decoration: none;
    background-color: transparent;
}
.filter-display {
    display: flex;
    flex-wrap: wrap;
}
.filter-display p{
    margin-right: 10px;
    margin-bottom: 0;
    padding: 5px;
    background: rgb(33, 33, 33);
    color: #fff;
    width: fit-content;
    border-radius: 5px;
}

i.fas.fa-exclamation-triangle.custom-warning-icon{
    font-size: 50px;
    color: #eed202;
}
p.custom-warning-text{
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
    padding: 2px;
}
.dropdown-menu.custom_checkbox_class{
    height:242px;
	position: absolute !important;
    will-change: transform !important;
    width: 238px !important;
	transform: translate(-37%, 11%) !important;
    left: 25px !important;
	overflow: hidden;
}

.contact_talent{
    width: 140px;
    background: #fff !important;
    top: 70px;
    right: 43px;
    position: absolute;
    font-weight: 500;
}

.contact_talent:hover{
    background: #ee5863 !important;
}

.categoryCls{
    position: absolute !important ;
    transform: translate3d(0px, 37px, 0px) !important;
    top: 18px !important;
    left: 0px !important;
    will-change: transform !important;
}

.img-seller-custom{
    position: relative;
    /* left: 20%; */
    border-radius: 3px;
    /* height: 200px; */
    top: 10px;

}

.filter_btn{
	margin-left: 15px;
    margin-top: 10px;
}

.occassion{
    max-height: 500px !important;
    position: absolute !important;
    will-change: transform !important;
    width: 238px !important;
    transform: translate(-37%, 11%) !important;
    left: 50px !important;
    overflow-y: hidden;
}

.special_deal{
    position: absolute !important;
    will-change: transform !important;
    width: 238px !important;
    transform: translate(-37%, 24%) !important;
    left: 50px !important;    
}

span.tag-arrow {
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    text-align: center;
}

i.fas.fa-sort-down{
    margin: 5px 0px;
    color: #28738a;
}


.seller-image-col-4{
    text-align: center;
}

.img-seller-custom{
    position: relative;
    /* left: 20%; */
    border-radius: 3px;
    /* height: 200px; */
    top: 10px;

}

.seller-name{
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    color: #fc239f;
    margin-top: 10px;
}

.icon-div-custom{
    font-size: 14px;
}

.money-icon{
    margin-right: 10px;
}

.language{
    margin-top: 10px;
}

.location{
    font-size: 15px;
    margin-top: 10px;
}

.location i{
    margin-right: 5px;
    margin-top: 3px;
}

.col-4-content{
    margin-top: 10px;
}

.col-4-content h2{
    font-size: 15px;
    font-weight: 700;
    color: #626262 !important;
    text-transform: capitalize;
}

.col-4-content p {
    font-size: 13px;
    text-align: center;
}

.btn-see-more{
    color: #ee5863;
    background-color: #ffed00;
    border-color: #ffed00;
    font-weight: 600;
}

.btn-see-more:active{
    color: #fff;
    background-color: #0062cc;
    border-color: #005cbf;
}

.read-more-btn a{
    font-size: 14px;
    color: #fc239f;
    margin-top: -8px;
}

.report-icon{
    font-weight: 600;
    
}

.report-icon i {
    margin-right: 3px;
    margin-top: 5px;
}

.navbar-toggle{
    border: none;
    background: none;
    color: white;
    font-size: 18px;
    font-weight: 600;
}

.navbar-toggle:active,
.navbar-toggle:focus{
    border: none;
    outline: none;
}

.icon-bar{
    display: none;
}

a{
    color: #626262;
}

.seller-top-space {
    margin-top: 25px;
    border-top: 1px solid #ccc;
}



@media only screen and (max-width:1200px) {
    .become-member{
        font-size: 14px;
    }
}


@media only screen and (max-width:990px) {   
    .video_div iframe {
        max-width: 100%;
    }
}
@media only screen and (max-width:550px) {
    .blog .blog-description {
        padding-right: 0;
    }
    .video_div iframe {
        max-width: 100%;
    }
    .blog .blog-body .blog-image img {
        height: unset;
    }
    .comment textarea{
        width: 100%;
        border: 1px solid #ccc;
        resize: none;
    }
    .custom-filter ul li a {
        font-size: 12px;
        margin-left: 5px !important;
        margin: 0px;
	}
		
    .custom-filter .nav-link {
        display: block;
        padding: .5rem .5rem;
    }
    .seller-image-col-4{
        border-top: 1px solid #ccc;
        margin-top: 20px;
    }

    .contact_talent{
        width:150px;
    }
    .dropdown-menu.custom_checkbox_class{
        height: 500px; 
        overflow-y: scroll;
        transform: translate(-37%, 10%) !important;
    }
    span.tag-arrow{
        display: none;
    }

}


@media only screen and (max-width:  500px){
    .occassion {
        margin-left: -95px;
    } 
   
    .special_deal{
        transform: translate(-55%, 24%) !important;
    }
 
    .post_tagCls{
        left: 0px !important;
    }

    .item-image img{
        height: 120px;
    }

    .become-a-member{
        display: none;
    }

    .item-listing{
        margin-top: 15px;
    }

    .icon-bar{
        display: block;
    }

    .navbar-brand img{
        position: relative;
        left: 85px;
    }
    
}

.btn-outline-danger {
    color: #ee5863 ;
}
.btn-outline-danger:hover{
    background-color: #ee5863;
    border-color: #ee5863;
}
.btn-danger{
    background-color: #ee5863 !important;
}
.custom_edit_link a{
    background: transparent;
    border: none;
    font-size: unset;
}
.custom_edit_link a:hover{
    background: transparent;
    border: none;
    color: unset;
}


@media only screen and (max-width:  500px){
    .selectBox::after {
    width: 75px;
    height: 36px;
    padding: 0;
    right: 16px;
}
.search_btn{
    width:75px;
}
.alert.alert_success{
    width: 350px !important;
   
    right: 0;
}
.occassion_checkboxes .col-4{
flex: 0 0 100%;
    max-width: 100%;
}
    
}