.flash-danger {
    background: #cd5c5c;
    margin: 20px;
    padding: 7px 20px;
    color: white;
    border-radius: 7px;
}

.flash-div {
    width: 100%;
    z-index: 50000;
    background: transparent;
}

.flash-div .flash {
    width: 100%;
    background: #2e8b57;
    padding: 20px 10px;
    color: white;
}

.flash-alert-danger {
    background: #a52a2a !important;
}

.netteFormsModal {
    line-height: 140%;
    text-align: left !important;
    border: 0px !important;
    -webkit-box-shadow: 5px 5px 20px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 5px 5px 20px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 5px 5px 20px 0px rgba(0, 0, 0, 0.75);
}

.netteFormsModal button {
    width: 50%;
    border: 0px;
    background: none;
    margin-left: 25%;
    background: var(--384F95);
    color: white;
    padding: 9px 4px !important;
    border-radius: 5px;
}

.cookie-agree-box {
    width: 100% !important;
    height: 100% !important;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 5000 !important;
    position: fixed;
    top: 0px;
    left: 0px;
}

.cookie-agree-box .inner-box {
    background-color: white;
    min-width: 200px;
    max-width: 500px;
    margin: 100px auto 0;
    padding: 25px;
    text-align: left;
    font-size: 12px;
    line-height: 1.4;
    border-radius: 10px;
    max-height: 80%;
    overflow: scroll;
}

@media only screen and  (max-width: 600px) {
    .cookie-agree-box .inner-box {
        margin: 50px auto 0;
    }
}

.cookie-agree-box .inner-box h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

.cookie-agree-box .inner-box p {
    font-size: 13px;
}

.cookie-agree-box .inner-box ul {
    margin-top: 10px;
    margin-left: 20px;
    margin-bottom: 20px;
    list-style-type: circle;
    font-size: 12px;
}

ul li {
    margin-bottom: 2px;
}

.cookie-agree-box .inner-box .success-button {
    background: var(--4DB7FE);
    color: white;
    padding: 10px 22px;
    border-radius: 7px;
    width: 100% !important;
    display: block;
    text-align: center;
}

.cookie-agree-box .inner-box .no-button {
    background: #F75C96;
    color: white;
    padding: 10px 22px;
    border-radius: 7px;
    width: 100% !important;
    display: block;
    text-align: center;
}

.cookie-agree-box .inner-box .success-div {
    width: 60%;
    float: left
}

.cookie-agree-box .inner-box .no-div {
    width: 40%;
    float: right
}

@media only screen and  (max-width: 600px) {
    .cookie-agree-box .inner-box .success-div {
        width: 100%;
        float: none;
        margin-bottom: 8px
    }

    .cookie-agree-box .inner-box .no-div {
        width: 100%;
        float: none;
    }
}


/* Customize the label (the container) */
.cookie-agree-box .container {
    display: block;
    position: relative;
    padding-left: 30px;
    line-height: 20px;
    margin-bottom: 5px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.cookie-agree-box .container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.cookie-agree-box .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
}

/* On mouse-over, add a grey background color */
.cookie-agree-box .container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.cookie-agree-box .container input:checked ~ .checkmark {
    background-color: #F75C96;
}

/* Create the checkmark/indicator (hidden when not checked) */
.cookie-agree-box .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.cookie-agree-box .container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.cookie-agree-box .container .checkmark:after {
    left: 5px;
    top: 5px;
    width: 5px;
    height: 5px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.cookie-agree-box .containerForm{
    margin-top: 10px;
    margin-bottom: 10px;
    border-bottom: 1px dotted silver;
    padding-bottom: 10px;
}

.cookie-agree-box a.openCookieInfo{
    font-size: 90%;
    text-decoration: underline;
}

.cookie-agree-box p.cookie-info{
    font-size: 90%;
    padding-bottom: 10px;
}


.video-containers {
    max-width: 100%;
    min-width: 100%;
    height: 500px;
    margin: 0 auto;
}

.video-containers video {
    background-color: black;
    width: 100%; /* Fill the available width */
    height: 500px; /* Adjust height automatically */
    object-fit: contain;
}

.addPost {
    margin-top: 0px;
}

.no-user-content {
    height: 100%;
    background-color: black;
}

.no-user-content p {
    padding-top: 25%;
    color: white;
}

p.lockImageMessage {
    position: absolute;
    top: 60%;
    left: 15%;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    width: 75%;
    padding: 20px;
    border-radius: 5px;
    font-size: 14px;
    text-align: center;
}

@media only screen and  (max-width: 1200px) {
    .addPost {
        margin-top: 20px;
    }

    .video-containers {
        height: 300px;
        margin: 0 auto;
    }

    .video-containers video {
        height: 300px;
    }

    .no-user-content p {
        padding-top: 15%;
    }

    p.lockImageMessage {
        top: 20%;
    }
}


@media only screen and  (max-width: 1000px) {
    p.lockImageMessage {
        top: 40%;
    }
}

.photoAbout {
    position: absolute;
    bottom: 0px;
    background-color: rgba(255, 255, 255, 0.9);
    line-height: 20px;
    padding: 7px 8px;
    color: black;
    font-weight: bold;
    left: 0px;
    border-top-right-radius: 12px;
}

.photoAbout.type-advert {
    background-color: #F75C96;
    color: white;
}

.photoAbout.type-blog-post {
    background-color: var(--4DB7FE);
    color: white;
}


.messageGoTo {
    text-align: left;
    padding-bottom: 20px;
    background: white;
    color: var(--878C9F);
}

.messageGoTo a {
    width: 100%;
    display: block;
    /* background: var(--384F95); */
    color: var(--384F95);
    text-align: center;
    padding: 8px 4px;
    border-radius: 5px;
    border: 1px solid var(--384F95);
    margin-top: 12px;
    margin-bottom: 10px;
}

#ajaxLoader {
    z-index: 50000;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 0px;
    line-height: 77px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 0px;
    /* display: none; */
    overflow: hidden;
}

.lockcontent {
    height: 76px;
    width: 200px;
    position: absolute;
    top: 0px;
    right: 0px;
    margin-top: 7px;
}

.buyContent {
    width: 179px;
    border-radius: 10px;
}

.buyContent.isOnDetail {
    width: 90%;
    margin: 19px 5% 19px 19px;
}

.buyContent.isOnDetail i:before {
    color: white
}


.main-register-wrap-price {
    display: none;
}

.main-register-wrap-price.active {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    display: block;
    z-index: 50000;
}

.close-reg-price {
    position: absolute;
    top: 0;
    right: 0;
    width: 54px;
    height: 54px;
    line-height: 54px;
    cursor: pointer;
    z-index: 3;
    color: #fff;
    border-left: 1px solid rgba(255, 255, 255, 0.11);
    font-size: 18px;
}

#buyContentModal p {
    color: black;
    font-size: 14px;
    padding-bottom: 20px;
}

#buyContentModal p strong {
    color: #F75C96;
    font-size: 151%;
}

#buyContentModal p strong span {
    font-size: 14px;
    font-weight: normal;
}

#buyContentModal a {
    width: 100%;
    display: block;
    background: #F75C96;
    color: white;
    padding: 12px;
    border-radius: 8px;
}

.bought-message {
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: rgba(193, 225, 193, 0.7);
    padding: 7px 16px;
    border-bottom-right-radius: 7px;
    color: white;
    font-weight: normal;
}

.bought-message-detail {
    background-color: rgb(193, 225, 193);
    padding: 7px 16px;
    border-bottom-right-radius: 7px;
    color: gray;
    font-weight: normal;
    text-align: center !important;
}

.video-div {
    width: 150px;
    height: 100px;
    background-color: black;
    background-image: url('/design/videoicon.png');
    border-radius: 10px;
    background-position: center;
    background-size: 50px 50px;
    background-repeat: no-repeat
}

.video-div-post{
    width: 100%;
    height: 500px;
    background-color: black;
    background-image: url('/design/videoicon.png');
    border-radius: 10px;
    background-position: center;
    background-size: 50px 50px;
    background-repeat: no-repeat
}


@media only screen and  (max-width: 1200px) {

    .video-div-post{
        height: 300px;
    }

}

.filter-sidebar-header .tabs-menu li.profile{
    width: 25%;
}

.list-author-widget-contacts.list-item-widget-contacts li.profile-credit{
    padding-bottom: 0px;
}
.list-author-widget-contacts.list-item-widget-contacts li.profile-credit a{
    width: 90%;
    color: white;
}

.list-author-widget-contacts.list-item-widget-contacts li.profile-credit:last-child{
    padding-bottom: 15px;
}

p.infop{
    padding-bottom: 15px;
    color: var(--566985);
    text-align: left;
}

.list-author-widget-contacts.list-item-widget-contacts li.profile-credit p{
    text-align: left;
    display: block;
    margin-bottom: 5px;
    color: var(--566985);
}

.list-author-widget-contacts.list-item-widget-contacts li.profile-credit p strong{
    font-size: 90%;
    font-weight: normal;
}

.profile-credit strong{
    font-size: 80%;
    font-weight: normal;
}

.girl-info{
    text-align: left;
    color: var(--878C9F);
    font-size: 14px;
    margin-bottom: 15px;
}

.girl-info .col-lg-4{
    margin-bottom: 15px;
}

.girl-info .col-lg-4 a{
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    width: 90%;
    text-align: center;
    line-height: 20px;
}

.girl-info small{
    font-size: 11px;
}

.infopara{
    background: #f2fde7;
    padding: 10px 8px;
    color: var(--878C9F);
}

.infopara.red {
    background: red;
}

.infopara.white {
    background: white;
}

.col-lg-4.imagebox{
    cursor: pointer;
    height: 150px;
    background-position: center;
    background-size: cover;
    border: 1px solid white;
    border-radius: 10px;
}

#selectedFile{
    background-color: black;
    background-position: center;
    background-size: cover;
}

.infopara.paddingall{
    padding: 26px 15px;
    clear: both;
}

.locked-image-msg{
    background: black;
    padding: 36px 10px;
    display: block;
    max-width: 50%;
    margin: 0 auto;
    border-radius: 10px;
    text-align: center;
}

span.msg-error{
    color: red;
    display: block;
    padding: 20px;
}

span.msg-error a{
    color: red;
    font-weight: bold;
    text-decoration: underline;
}

#changeSelectedFile{
    display: block;
    width: 100%;
    line-height: 50px;
    color: var(--878C9F);
    text-decoration: underline;
}

#profileMessageSend{
    color: var(--4DB7FE);
    display: block;
    border: 0;
    padding: 12px;
    margin-top: 10px;
    margin-left: 2%;
    margin-bottom: 20px;
    width: 96%;
    cursor: pointer;
}

.header-post-item .widget-posts-img{
    width: 60px;
}

.header-post-item .widget-posts-img img{
    border-radius: 50%;
}

.header-modal2 .header-modal-top{
    background: #F75C96;
}

.header-modal2  .close-header-modal{
    color: white;
}
#giftResponse p{
    color: var(--566985);
}

#giftResponse .danger{
    text-align: center;
    line-height: 200%;
    color: red;
}

#giftResponse .danger a{
    color: var(--566985);
    text-decoration: underline;
}

.popup{
    position: fixed;
    z-index: 5000;
    max-width: 300px;
    color: white;
    top: 5px;
    left: 2px;
    text-align: left;
    padding: 15px 10px 15px 15px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.popup #popupContent span{
    position: relative;
    display: inline-block;
    margin-top: 5px;
    width: auto;
    clear: both;
    height: auto;
    float: right;
    margin-bottom: 10px;
    background: rgba(40, 162, 40, 0.95);
    padding: 10px 40px 10px 15px;
    border-radius: 5px;
    cursor: pointer;
}

.popup #popupContent span.flash-alert-dangeer{
    background: rgba(247, 92, 150, 0.95);
}

.popup #popupContent span.flash-alert-info{
    background: rgba(40, 162, 40, 0.95);
}

.popup #popupContent span:before{
    content: '\00d7';
    color: white;
    font-size: 20px;
    position: absolute;
    right: 15px;
    line-height: 30px;
    top: 0px;
}

div.add-post-g{
    padding: 10px 30px 30px
}

a.add-post{
    margin-left: 1%;
    display: block;
    width: 24%;
    float: left;
    background: var(--384F95);
    padding: 0px;
    padding: 31px;
    color: white;
    border-radius: 5px;
    font-weight: 600;
}

a.add-post i{
    display: block;
    margin-bottom: 15px;
    color: white;
    font-size: 150% !important;;
}

@media only screen and  (max-width: 650px) {
    a.add-post{
        margin-top: 5px;
        width: 49%;
        float: left;
    }
}

.photoListPreview .col-lg-4 {
    border: 1px solid #f5f5f5;
    padding: 10px;
    margin-bottom: 10px;
}

.photoListPreview .photoItem{
    width: 100%;
    height: 0;
    padding-top: 100%;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: silver;
    border-radius: 13px;
    margin-bottom: 10px;
    position: relative
}

.photoListPreview .photoItem a{
    position: absolute;
    top: 5px;
    right: 5px;
    background: red;
    display: block;
    width: 35px;
    line-height: 35px;
    color: white;
    border-radius: 50%;
    font-family: monospace;
    cursor: pointer;
}

.ajaxLoaderAlbum img{
    width: 50px;
}

.ajaxLoaderAlbum{
    color: var(--878C9F);
    text-align: center;
}

.photoListPreview label{
    margin-top: 10px;
}
.photoListPreview input[type=checkbox] {
    position: relative;
    cursor: pointer;
    margin-right: 10px;
}
.photoListPreview input[type=checkbox]:before {
    content: "";
    display: block;
    position: absolute;
    width: 16px;
    height: 16px;
    top: 0;
    left: 0;
    border: 2px solid #555555;
    border-radius: 3px;
    background-color: white;
}
.photoListPreview input[type=checkbox]:checked:after {
    content: "";
    display: block;
    width: 5px;
    height: 10px;
    border: solid black;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 2px;
    left: 6px;
}

div.form-error{
    background: rgba(139, 0, 0, 0.5);
    padding: 12px 9px;
    color: white;
    text-align: center;
    border-radius: 5px;
    width: 90%;
    margin-left: 5%;
}

.imageItemgalleryfull{
    background: var(--878C9F);
    color: white;
    height: 0;
    padding-top: 100%;
    border: 5px solid white;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    text-align: center;
}

.imageItemgallery{
    background: var(--878C9F);
    color: white;
    height: 0;
    padding-top: 33%;
    border: 5px solid white;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    text-align: center;
}

.imageItemgallery span{
    position: absolute;
    line-height: 150%;
    top: 45%;
    left: 0px;
    width: 100%;
    display: block;

}

.lightgallery{
    margin-top: 20px;
}

.infoLockedalbum{
    text-align: center;
    background: white;
    border-top: 1px solid #eee;
    padding-top: 4px;
    color: #F75C96 !important;
}

.box-media-zoom.unlockAlbum{
    top: 45px;
}

.gradient-color-album{
    background: rgb(247,92,150);
    background: linear-gradient(197deg, rgba(247,92,150,0.8113620448179272) 0%, rgba(255,255,255,1) 26%, rgba(255,255,255,1) 52%);
}

.gradient-color-post{
    background: rgb(247,92,150);
    background: linear-gradient(197deg, rgba(247,92,150,0.8113620448179272) 0%, rgba(255,255,255,1) 26%, rgba(255,255,255,1) 52%);
}

.gradient-color-advert{
    background: rgb(56,79,149);
    background: linear-gradient(197deg, rgba(56,79,149,0.6741071428571428) 0%, rgba(255,255,255,1) 26%);
}

select{
    height: 41px;
    width: 100%;
}


article.propagation-item div.geodir-category-content.fl-wrap.title-sin_item{
    -webkit-box-shadow: 0px 0px 5px 0px red;
    -moz-box-shadow: 0px 0px 5px 0px red;
    box-shadow: 0px 0px 5px 0px red;
}


.tooltipfeelia {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}

.tooltipfeelia{
    color: gray;
    font-size: 90%;
    font-weight: normal;
    text-decoration: underline;
    border-bottom: 0px;
    font-style: italic;;

}

.tooltipfeelia .tooltiptext {
    font-style: normal;
    visibility: hidden;
    max-width: 200px;
    min-width: 170px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 10px;
    position: absolute;
    z-index: 1;
    top: 40px;
    left: -50px;
    font-size: 12px;
    line-height: 16px;
}

.tooltipfeelia:hover .tooltiptext {
    visibility: visible;
}

.tags-stylwrap a.active {
    float: left;
    padding: 8px 20px;
    border-radius: 2px;
    color: white;
    font-weight: 400;
    margin:0 6px 6px 0;
    background: #F75C96;
    border: 1px solid #eee;
    transition: all 0.2s  ease-in-out;
}

.ctable h3{
    color:var(--566985);
    text-align: left;
    font-size: 130%;
    margin-top: 20px;
    margin-bottom: 20px;
}

.ctable table{
    margin-top: 20px;
}

.ctable th {
    border:1px solid #4DB7FE;
    font-weight: 100;
    padding: 15px;
    text-align:left;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    vertical-align:middle;

}

.ctable tr {
    color:var(--566985);
    font-weight:normal;
}



.ctable tr:nth-child(odd) td {
    background:#EBEBEB;
}


.ctable tr:last-child td:first-child {
    border-bottom-left-radius:3px;
}

.ctable tr:last-child td:last-child {
    border-bottom-right-radius:3px;
}

.ctable td {
    padding:15px;
    text-align:left;
    vertical-align:middle;
    font-weight:300;
    border-right: 1px solid gray;
}
.ctable td:last-child {
    border-right: 0px;
}
.ctable td span{
    font-size: 80%;
    opacity: 0.8;
}
select.nochosen {
    background: #fff none repeat scroll 0 0;
    border: medium none;
    border-radius: 35px;
    color: #535165;
    font-size: 13px;
    line-height: initial;
    margin: 10px 0;
    padding: 14px 15px;
    width: 100%;
}


.starVideoItem{
    width: 50% !important;;
}


@media only screen and  (max-width: 800px) {
    .starVideoItem{
        width: 100% !important;;
    }

}

.nomartintopbutton{
    margin-top: 0px !important;
}

@media only screen and  (max-width: 1200px) {
    .nomartintopbutton{
        margin-top: 20px !important;
    }

}

@media only screen and  (max-width: 660px) {
    .logo-fullsite{
        display: none !important;
    }
    .logo-mobilesite{
        display: inline-block !important;
    }
}
@media only screen and  (max-width: 1280px) {
    .hideomobile{
        display: none !important;
    }

}

