@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css?family=PT+Sans:400,700');

:root {
    --clr-theme: #4E8098;
    --clr-secondary: #5296A5;
    --hero-img: url(../images/bg-to-set.jpg);
}

body {
    margin: 0;
    padding: 0;
    font-size: 15px;
    color: #2e2e2e;
    line-height: 1.5;
    font-family: 'PT Sans', sans-serif;
    /*-webkit-touch-callout: none;*/
    /*-webkit-user-select: none;*/
    /*-khtml-user-select: none;*/
    /*-moz-user-select: none;*/
    /*-ms-user-select: none;*/
    /*user-select: none;*/
}

img {
    height: auto;
    max-width: 100%;
}

* {
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box; /* Firefox, other Gecko */
    box-sizing: border-box; /* Opera/IE 8+ */
}

.clearfix:before, .clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1;
}

.center {
    text-align: center !important;
    margin: 0 auto;
}

p {
    margin: 0 0 20px 0;
    padding: 0;
}

p.Four-margin {
    margin-bottom: 10px;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 15px 0;
    padding: 0;
    color: #000000;
}

.pink {
    color: var(--clr-secondary);
}

.green {
    color: #009933;
}

h2.pink {
    margin: 15px 0 0 0;
    padding: 0;
    line-height: 1.2;
    color: var(--clr-secondary);
    font-weight: bold;
}

.yr-loc {
    color: #454545;
    font-size: 18px;
    font-weight: 500;
}

hr {
    line-height: 0;
    clear: both;
    font-size: 0;
    margin: 25px 0;
    padding: 0;
    color: #cdcdcd;
    background: #cdcdcd;
    height: 0;
    border: 0;
    border-bottom: 1px solid #cdcdcd;
}

hr.pink {
    color: var(--clr-secondary);
    background: var(--clr-secondary);
    border-bottom: 1px solid var(--clr-secondary);
}

a {
    color: var(--clr-secondary);
}

a:hover {
    color: var(--clr-theme);
}

strong {
    font-weight: 600;
}

.btn {
    display: inline-block;
    background: var(--clr-secondary);
    border: none;
    color: #fff;
    text-align: center;
    padding: 8px 20px;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    font-size: 15px;
    line-height: 27px;
    font-weight: 600;
    border-radius: 2px;
}

.btn:hover {
    color: #FFFFFF;
    background: var(--clr-theme);
}

.btn:focus {
    color: #fff;
}

.btn-large {
    text-transform: uppercase;
    font-size: 20px;
}

.btn.green {
    background: #3ba92b;
    color: #fff;
    display: inline-block;
}

.btn.green:hover {
    background: #207913;
    color: #fff;
}

.btn.blue {
    background: var(--clr-theme);
    color: #fff;
    display: inline-block;
}

.btn.blue:hover {
    background: #008ebd;
    color: #fff;
}

.btn.red {
    background: var(--clr-secondary);
    color: #fff;
    display: inline-block;
}

.btn.red:hover {
    background: #F25609;
    color: #fff;
}

.btn-wishlist {
    width: 100%;
    padding-left: 20px;
    position: relative;
    font-size: 17px;
    font-weight: 600
}

.btn-wishlist:before {
    content: "";
    width: 25px;
    height: 25px;
    background: url(../images/icon_wishlist.png) no-repeat;
    background-size: 100%;
    position: absolute;
    left: 10px;
    top: 8px;
}

.btn-proposal {
    width: 100%;
    padding-left: 20px;
    position: relative;
    font-size: 17px;
    font-weight: 600
}

.btn-proposal:before {
    content: "";
    width: 25px;
    height: 25px;
    background: url(../images/icon_plane.png) no-repeat;
    background-size: 100%;
    position: absolute;
    left: 10px;
    top: 8px;
}

.btn-profileupload {
    width: 100%;
    padding-left: 20px;
    position: relative;
    font-size: 17px;
    font-weight: 600
}

.btn-profileupload:before {
    content: "";
    width: 25px;
    height: 25px;
    background: url(../images/icon-camera3.png) no-repeat;
    background-size: 100%;
    position: absolute;
    left: 10px;
    top: 10px;
}

.btn-goldmember {
    width: 100%;
    padding: 14px 0;
    font-size: 20px;
    font-family: impact, serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #fff;
    text-transform: uppercase;
    font-weight: 100;
    text-decoration: none;
    display: block;
    background: var(--clr-theme);
    text-align: center;
    -webkit-border-bottom-right-radius: 4px;
    -webkit-border-bottom-left-radius: 4px;
    -moz-border-radius-bottomright: 4px;
    -moz-border-radius-bottomleft: 4px;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
}

.btn-goldmember:hover {
    color: #fff;
    background: var(--clr-secondary);
    text-decoration: none;
}

input[type=text] {
    width: 100%;
    padding: 0 10px;
    height: 30px;
    border: 1px solid #dfe4e4;
    background: #fff;
    color: #000;
    font-size: 15px;
}

input[type=text]:focus {
    border: 1px solid var(--clr-secondary);
}

input[type="text"]:disabled {
    background: #dfe4e4;
}

input[type=password] {
    width: 100%;
    padding: 0 10px;
    height: 30px;
    border: 1px solid #dfe4e4;
    background: #fff;
    color: #000;
    font-size: 15px;
}

input[type=password]:focus {
    border: 1px solid var(--clr-secondary);
}

input[type="password"]:disabled {
    background: #dfe4e4;
}

textarea {
    width: 100%;
    padding: 10px;
    height: 130px;
    border: 1px solid #dfe4e4;
    background: #fff;
    color: #000;
    font-size: 15px;
}

textarea:focus {
    border: 1px solid var(--clr-secondary);
}

textarea:disabled {
    background: #dfe4e4;
}

.asterix {
    font-size: 25px;
    font-weight: bold;
}

.select-container {
    background: url(../images/caret-down.png) no-repeat right center #fff;
    border: 1px solid #CCCCCC;
    height: 36px;
    overflow: hidden;
    border-radius: 2px;
    outline: none;

}

.select-container select {
    background: transparent;
    color: #394166;
    height: 36px;
    padding: 5px; /* If you add too much padding here, the options won't show in IE */
    width: calc(100% + 37px);
    line-height: 36px;
    font-size: 14px;
    border: none;
    outline: none;
    font-weight: 500;
}

.select-container option {
    margin: 0;
    padding: 5px;
    border: none;
    outline: none;
}



::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    opacity: 1;
}

::-moz-placeholder { /* Firefox 19+ */
    opacity: 1;
}

:-ms-input-placeholder { /* IE 10+ */
    opacity: 1;
}

:-moz-placeholder { /* Firefox 18- */
    opacity: 1;
}

.Four {
    font-size: 13px;
}

.shadow {
    background: #FFFFFF;
    -webkit-box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.25);
}

.padded {
    padding: 25px;
}

.rounded {
    border-radius: 50%;
}

.rounded2 {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    width: 100%;
    height: auto;
}

.container.smallx {
    padding: 0 7%;
}

.lnht-large {
    line-height: 30px;
}

.header {
    padding: 10px 0;
    background: #FFFFFF;
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.05);
}

.logo img {
    width: 100%;
    max-width: 156px;
    margin-top: 18px;
    margin-bottom: 25px;
}

.header-login-form {
    text-align: right;
}

.header-login-form button.btn {
    padding: 2px 20px;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    font-size: 15px;
    line-height: 27px;
    font-weight: 400;
    border-radius: 2px;
}

ul.top-links {
    margin: 5px 0;
    padding: 0;
    list-style: none;
}

ul.top-links li {
    margin: 0;
    padding: 2px 10px 2px 6px;
    list-style: none;
    display: inline-block;
    background: url(../images/devider1.gif) no-repeat right center;
}

ul.top-links li:last-child {
    background: none;
    padding-right: 0
}

.main {
    background-color: #F3F3F3;
    position: relative;
    padding-bottom: 50px;
}

.home .main {
    background: var(--hero-img) no-repeat right;
    background-size: cover;
}

.formcont {
    display: none !important;
    background: url(../images/girl.png) no-repeat left bottom;
    width: 20%;
    height: 96%;
    background-size: 100% 100%;
    position: absolute;
    bottom: 0;
    z-index: 999;
    max-width: 302px;
    min-width: 280px;
}

.formcont2 {
    margin-left: 150px;
    margin-top: 50px;
}

ul.stylewhite {
    margin: 300px 0 0 0;
    padding: 0;
    list-style: none;
}

ul.stylewhite li {
    margin: 4px;
    padding: 5px 5px 5px 30px;
    display: inline-block;
    list-style: none;
    background: url(../images/tick4.png) no-repeat 5px 8px #FFFFFF;
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

@media (min-width: 767px) {
    .hero-content {
        justify-content: flex-start;
    }
}

.registration-form {
    max-width: min(100%, 420px);
}

.registration-form-top {
    text-align: center;
    background: var(--clr-theme);
    color: #FFFFFF;
    padding: 10px 5px 15px 5px;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;

    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.25);
}

.registration-form-top h2 {
    font-weight: bold;
    margin: 0 0 10px 0;
    color: #FFFFFF;
}

.registration-form-top h4 {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    margin: 0;
    color: #FFFFFF;
}

.registration-form-bottom {
    background: #fff;
    padding: 30px 20px 15px 20px;
    position: relative;
    -webkit-border-bottom-right-radius: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -moz-border-radius-bottomright: 5px;
    -moz-border-radius-bottomleft: 5px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;

    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.25);
}

.registration-form-bottom:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 14px 23.5px 0 23.5px;
    border-color: var(--clr-theme) transparent transparent transparent;

    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -25px;
}

.registration-form-bottom hr {
    margin: 10px 0;
    border-color: #ccc;
}

.registration-form-bottom .term-cond {
    font-size: 13px;
    color: black;
    text-align: center;
    padding: 0 30px;
}

.registration-form-bottom .term-cond a {
    color: #000;
    text-decoration: underline;
    font-weight: bold
}

.registration-form-bottom .term-cond a:hover {
    color: var(--clr-secondary);
}

.registration-form-bottom .control-label {
    font-weight: normal;
}

.registration-form-bottom .form-control {
    background: #ededed;
}

.registration-form-bottom .btn-pink {
    border-radius: 2px;
    font-size: 22px;
    font-weight: bold;
}

.registration-form-bottom .btn-pink:hover {
}


/* most-active-members ******************************************/
.most-active-members {
    padding: 25px 0;
    background: #f3fdff;
}

.most-active-members .container {
    position: relative;
}

#act-prev a, #act-next a {
    display: block;
    cursor: pointer;
    font-size: 30px;
    position: absolute;
    top: 43%;
    width: 40px;
    height: 40px;
    border-radius: 2px;
    background: var(--clr-secondary);
    line-height: 40px;
    text-align: center;
    color: #FFFFFF;
    -webkit-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.9);
    -moz-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.9);
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.9);
}

#act-prev a {
    left: 0;
}

#act-next a {
    right: 0;
}

#act-prev a:hover, #act-next a:hover {
    background: var(--clr-theme);
}

ul.bxslider {
    margin: 0;
    padding: 0;
    list-style: none;
}

ul.bxslider li {
    margin: 0;
    padding: 2px;
    list-style: none;
    font-size: 14px;
}

ul.bxslider li:hover a {
    text-decoration: none;
}

ul.bxslider li img {
    width: 100%;
    height: auto;
    margin-bottom: 6px;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.45);
    -moz-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.45);
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.45);
}

ul.bxslider li span.left {
    float: left;
}

ul.bxslider li span.right {
    float: right;
}

ul.bxslider li span.center {
    float: none;
    width: 100%;
    clear: both;
    display: block;
    text-align: center;
    padding: 3px 0;
    color: #000000;
}

ul.three-icons {
    margin: 0;
    padding: 0;
    list-style: none;
    vertical-align: top;
    text-align: center;
}

ul.three-icons li {
    margin: 0 auto 30px auto;
    padding: 0;
    list-style: none;
    vertical-align: top;
    display: inline-block;
    width: 33%;
    text-align: center;
}

ul.three-icons li img {
    clear: both;
    display: block;
    margin: 0 auto 15px auto;
}


.footer {
    background: var(--clr-theme);
    padding: 40px 0;
    color: #FFFFFF;
    text-align: center;
    font-size: 11px;
}

.footer a {
    color: #FFFFFF;
    text-decoration: none;
}

.footer a:hover {
    color: #005875;
}

.footer hr {
    background: url(../images/hr.png) repeat-x top;
    margin: 40px 0 20px 0;
    padding: 0;
    font-size: 0;
    line-height: 0;
    width: 100%;
    height: 18px;
    border: none;
}

.footer .footermenu {
    margin: 0 0 20px 0;
    padding: 0;
    list-style: none;
    text-align: center;
}

.footer .footermenu li {
    margin: 5px 0;
    padding: 0 9px 0 19px;
    list-style: none;
    display: inline-block;
    background: url(../images/slant.png) no-repeat left center;
}

.footer .footermenu li:first-child {
    background: none;
}

.footer .copyright {
    margin: 0;
    padding: 0;
    text-align: center;
    font-size: 13px;
}

.footer .copyright a {
    text-decoration: underline;
}

.footerlogo {
    margin: 15px 0;
}


/* Chat ******************************************/

ul.chat-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

ul.chat-list li {
    margin: 18px 0 0 0;
    padding: 18px 0 0 0;
    list-style: none;
    border-top: 1px solid #e6e6e6;
}

ul.chat-list li:before, ul.chat-list li:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

ul.chat-list li:after {
    clear: both;
}

ul.chat-list li {
    *zoom: 1;
}

ul.chat-list li:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

ul.chat-list li .chat-profile-photo {
    border: 2px solid var(--clr-secondary);
    width: 90px;
    height: 90px;
    float: left;
}

ul.chat-list li .msgcont {
    float: left;
    width: calc(100% - 105px);
    margin-left: 15px;
}

ul.chat-list h5 {
    margin: 0;
    padding: 0;
}

ul.chat-list h5 span.msg {
    margin: 0 0 8px 0;
    padding: 12px;
    font-size: 15px;
    border: 1px solid #d8d8d8;
    display: inline-block;
    line-height: 1.3;
    border-radius: 3px;
}

ul.chat-list h5 span.time {
    font-size: 12px;
    color: #919191;
    line-height: 1;
}

ul.chat-list li.reply .chat-profile-photo {
    float: right;
}

ul.chat-list li.reply .msgcont {
    float: right;
    margin-left: 0;
    margin-right: 15px;
}

ul.chat-list li.reply h5 {
    float: right
}

ul.chat-list li.reply h5 span.msg {
    border: 1px solid #adca55;
    background: #f9ffe8;
}

.txtarea {
    margin-bottom: 10px;
    padding: 0;
    border: 1px solid #d8d8d8;
    background: #f6f6f6;
    height: 100px;
    display: table;
    width: 100%;
}

.txtarea textarea {
    margin: 0;
    padding: 10px;
    width: 100%;
    border: 0;
    background: #f6f6f6;
    min-height: 90px;
}

.txtarea .leftcol {
    width: calc(100% - 140px);
    display: table-cell;
    vertical-align: middle;
}

.txtarea .rightcol {
    width: 140px;
    display: table-cell;
    vertical-align: middle;
}

.file-up {
    position: relative;
    display: inline-block;
}

.file-up input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    opacity: 0;
    filter: alpha(opacity=0);
    cursor: pointer;
}

.btn-addphoto {
    display: inline-block;
    background: #fff;
    border: solid 1px #c3c3c3;
    height: 40px;
    width: 50px;
    position: relative;
}

.btn-addphoto i.camera {
    background: url(../images/icon-camera.png) center center no-repeat;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    display: inline-block;
}

.file-up:hover a.btn-addphoto {
    background: var(--clr-secondary);
    border: 1px solid var(--clr-secondary);
}

.btn-smile2 {
    border: 1px solid #c3c3c3;
    width: 62px;
    height: 40px;
    display: inline-block;
    text-align: center;
    line-height: 40px;
    background: url(../images/smile-arrow.png) center center no-repeat #fff;
    vertical-align: middle;
    text-indent: -9999px;
    cursor: pointer;
}

.btn-smile2:hover {
    background-color: var(--clr-secondary);
    border: 1px solid var(--clr-secondary);
}

.txtarea ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.txtarea ul li {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-block;
    vertical-align: top;
}

.txtarea2 textarea {
    margin: 0;
    padding: 10px;
    width: 100%;
    border: 1px solid #d9d9d9;
    background: #fff;
    min-height: 200px;
}

.txtarea2 ul {
    margin: 15px 0;
    padding: 0;
    list-style: none;
}

.txtarea2 ul li {
    margin: 0 0 0 10px;
    padding: 0;
    list-style: none;
    float: left;
}

.txtarea2 ul li:first-child {
    margin-left: 0;
}

.txtarea2 ul li:last-child {
    float: right;
}

.file-up2 {
    position: relative;
    display: inline-block;
}

.file-up2 input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    opacity: 0;
    filter: alpha(opacity=0);
    cursor: pointer;
}

.file-up2 .btn-addphoto2 {
    display: inline-block;
    background: #f7f7f7;
    border: solid 1px #adadad;
    color: #1c1a1a;
    padding: 9px 20px 8px 67px;
    position: relative;
}

.file-up2 .btn-addphoto2:hover, .file-up2:hover > a {
    color: var(--clr-secondary);
}

.file-up2 .btn-addphoto2 i.camera {
    background: url(../images/icon-camera2.png) center center no-repeat;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 60px;
    display: block;
}

.file-up2 .btn-addphoto2 label {
    font-weight: normal;
    cursor: pointer;
    color: #1c1a1a;
}

.error {
    color: #c00005;
}


/*--------------------------------------------------------------*/
/*-- Top Right Packages  -------------------------------------------*/
/*--------------------------------------------------------------*/
ul.pack {
    margin: 0;
    padding: 0;
    list-style: none;
    font-weight: 600;
}

ul.pack li {
    margin: 0 0 0 5px;
    padding: 0 0 5px 0;
    list-style: none;
    display: inline-block;
    text-align: center;
    background: #FFFFFF;
    -webkit-box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.15);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

ul.pack .pack-title {
    text-transform: uppercase;
    -webkit-border-top-left-radius: 4px;
    -webkit-border-top-right-radius: 4px;
    -moz-border-radius-topleft: 4px;
    -moz-border-radius-topright: 4px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    background: #616161;
    color: #FFFFFF;
    padding: 3px 0;
    font-size: 13px;
}

ul.pack .pack-title.elite {
    background: #000;
}

ul.pack .pack-price {
    color: var(--clr-secondary);
    font-weight: 700;
    font-size: 25px;
    line-height: 1;
    margin-bottom: 5px;
}

ul.pack .btn {
    font-weight: 700;
    line-height: 1;
    padding: 5px 20px;
    margin: 0 10px;

}

/*-- End  Top Right Packages -------------------------------------------*/

/*--------------------------------------------------------------*/
/*-- Side Buttons -------------------------------------------*/
/*--------------------------------------------------------------*/
ul.squarebuttons {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0;
    height: 116px;
}

ul.squarebuttons li {
    margin: 0;
    padding: 3px;
    list-style: none;
    width: 33.33%;
    font-size: 13px;
    font-family: Arial, Helvetica, sans-serif;
    display: inline-block;
    position: relative;
    text-align: center;
    vertical-align: top;
    -webkit-transition: all .14s ease;
    -moz-transition: all .14s ease;
    -o-transition: all .14s ease;
    transition: all .14s ease;
}

ul.squarebuttons .badge {
    position: absolute;
    top: 12px;
    right: 10px;
    z-index: 100;
    background-color: #F68307; /*border:1px solid var(--clr-theme);*/
}

ul.squarebuttons li a {
    color: #fff;
    display: block;
    padding: 60px 0 8px 0;
    text-decoration: none;
    background: var(--clr-theme);
    font-weight: 500;
    border-radius: 5px;
    width: 100%;
}

ul.squarebuttons li a i {
    position: absolute;
    left: 50%;
    margin-left: -18px;
    top: 20px;
    width: 36px;
    height: 36px;
    -webkit-transition: all .14s ease;
    -moz-transition: all .14s ease;
    -o-transition: all .14s ease;
    transition: all .14s ease;
}

ul.squarebuttons li.active, ul.squarebuttons li:hover {
    padding: 3px .5px;
}

ul.squarebuttons li:hover a, ul.squarebuttons li.active a {
    padding: 70px 0 8px 0;
}

ul.squarebuttons li:hover a i, ul.squarebuttons li.active a i {
    margin-left: -25px;
    top: 20px;
    width: 50px;
    height: 50px;
}

ul.squarebuttons li a i.settings {
    background: url(../images/navigation/settings.png) no-repeat center top;
    background-size: 100%;
}

ul.squarebuttons li a i.chat {
    background: url(../images/navigation/chat.png) no-repeat center top;
    background-size: 100%;
}

ul.squarebuttons li a i.logout {
    background: url(../images/navigation/logout.png) no-repeat center top;
    background-size: 100%;
}

ul.squarebuttons li a i.inbox {
    background: url(../images/navigation/inbox.png) no-repeat center top;
    background-size: 100%;
}

ul.squarebuttons li a i.outbox {
    background: url(../images/navigation/outbox.png) no-repeat center top;
    background-size: 100%;
}

ul.squarebuttons li a i.my-profile {
    background: url(../images/navigation/my-profile2.png) no-repeat center top;
    background-size: 100%;
}

ul.squarebuttons li a i.coins {
    background: url(../images/navigation/coins2.png) no-repeat center top;
    background-size: 100%;
}

ul.squarebuttons li a i.my-wish-list {
    background: url(../images/navigation/my-wish-list2.png) no-repeat center top;
    background-size: 100%;
}

ul.squarebuttons li a i.my-mailbox {
    background: url(../images/navigation/my-mailbox2.png) no-repeat center top;
    background-size: 100%;
}

ul.squarebuttons li a i.my-flirts {
    background: url(../images/navigation/my-flirts2.png) no-repeat center top;
    background-size: 100%;
}

ul.squarebuttons li a i.conversations {
    background: url(../images/navigation/conversations.png) no-repeat center top;
    background-size: 100%;
}

ul.squarebuttons li:hover a, ul.squarebuttons li.active a {
    background: var(--clr-secondary);
}

.in-out-box {
    float: right;
}

.in-out-box ul.squarebuttons li {
    min-width: 105px;
}

/*-- End Buttons -------------------------------------------*/


/*--------------------------------------------------------------*/
/*-- Side Navigation -------------------------------------------*/
/*--------------------------------------------------------------*/
ul.side-navigation {
    margin: 0;
    padding: 0;
    list-style: none;
}

ul.side-navigation li {
    margin: 0;
    padding: 0;
    list-style: none;
    display: block;
    position: relative;
}

ul.side-navigation li a {
    color: #000000;
    display: block;
    height: 100%;
    padding: 23px 0;
    text-decoration: none;
    background: #f6f6f6;
    border-top: 1px solid #dfe4e4;
    text-indent: 75px;
    font-weight: 500;
}

ul.side-navigation li:hover a {
    color: #000000;
    text-decoration: none;
    background: #FFFFFF;
}

ul.side-navigation li:first-child a {
    border-top: none;
}

ul.side-navigation li a i {
    position: absolute;
    left: 25px;
    top: 23px;
    width: 27px;
    height: 27px;
    -webkit-transition: all .14s ease;
    -moz-transition: all .14s ease;
    -o-transition: all .14s ease;
    transition: all .14s ease;
}

ul.side-navigation li:hover a i {
    left: 15px;
    top: 10px;
    width: 50px;
    height: 50px;
}

ul.side-navigation li a i.members {
    background: url(../images/navigation/members.png) no-repeat left top;
    background-size: 100%;
}

ul.side-navigation li a i.my-profile {
    background: url(../images/navigation/my-profile.png) no-repeat left top;
    background-size: 100%;
}

ul.side-navigation li a i.my-mailbox {
    background: url(../images/navigation/my-mailbox.png) no-repeat left top;
    background-size: 100%;
}

ul.side-navigation li a i.my-flirts {
    background: url(../images/navigation/my-flirts.png) no-repeat left top;
    background-size: 100%;
}

ul.side-navigation li a i.my-wish-list {
    background: url(../images/navigation/my-wish-list.png) no-repeat left top;
    background-size: 100%;
}

ul.side-navigation li a i.settings {
    background: url(../images/navigation/settings2.png) no-repeat left top;
    background-size: 100%;
}

ul.side-navigation li a i.logout {
    background: url(../images/navigation/logout2.png) no-repeat left top;
    background-size: 100%;
}

ul.side-navigation li a i.coins {
    background: url(../images/navigation/coins.png) no-repeat left top;
    background-size: 100%;
}

ul.side-navigation li a i.webcams {
    background: url(../images/navigation/webcam.png) no-repeat left top;
    background-size: 100%;
}

ul.side-navigation li:hover a i {
    background-position: bottom;
}

ul.side-navigation li.active a {
    background: #FFFFFF;
    border-left: 4px solid var(--clr-secondary);
}

ul.side-navigation li.active a i {
    background-position: bottom;
    left: 15px;
    top: 10px;
    width: 50px;
    height: 50px;
}

ul.side-navigation li span {
    background: var(--clr-secondary);
    padding: 2px 3px;
    border-radius: 3px;
    color: #FFFFFF;
    font-weight: 600;
    line-height: 1;
    float: right;
    position: absolute;
    top: 27px;
    right: 15px;
    font-family: Arial, Helvetica, sans-serif;
}

ul.side-navigation .credit a {
    position: absolute;
    right: 5px;
    top: 24px;
    z-index: 999;
    height: auto;
    width: auto;
    display: inline-block;
    background: var(--clr-secondary);
    padding: 5px 3px;
    border-radius: 3px;
    color: #FFFFFF !important;
    font-weight: 600;
    line-height: 1;
    border: none;
    text-indent: 0;
    font-family: Arial, Helvetica, sans-serif;
}

ul.side-navigation li:hover .credit a {
    background: var(--clr-secondary);
}

ul.side-navigation .credit a:hover {
    background: var(--clr-theme) !important;
}

ul.side-navigation li.active .credit a {
    background: var(--clr-secondary);
    border-left: none;
}

/*-- End Side Navigation -------------------------------------------*/

/*--------------------------------------------------------------*/
/*-- Flirt page -------------------------------------------*/
/*--------------------------------------------------------------*/

ul.flirt-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

ul.flirt-list li {
    margin: 0;
    padding: 15px 0;
    list-style: none;
    display: table;
    width: 100%;
    border-top: 1px solid #d9d9d9;
}

ul.flirt-list li:first-child {
    border-top: none;
    padding-top: 0;
}

ul.flirt-list li:last-child {
    padding-bottom: 0;
}

ul.flirt-list li .chat-profile-photo {
    border: 2px solid var(--clr-secondary);
    width: 90px;
    height: 90px;
}

.fl1, .fl2, .fl3, .fl4, .fl5, .fl6, .fl7 {
    display: table-cell;
    vertical-align: middle;
}

.fl1 {
    width: 26px;
}

.fl2 {
    width: 100px;
}

.fl3 {
    width: 160px;
    padding-right: 10px;
}

.fl3 p.username {
    color: var(--clr-secondary);
    font-weight: 600;
    font-size: 16px;
    margin: 0 0 2px 0;
    padding: 0;
}

.fl3 p.time {
    color: #7d7d7d;
    font-weight: 400;
    font-size: 12px;
    margin: 0 0 2px 0;
    padding: 0;
}

.fl3 p.location {
    color: #3f3f3f;
    font-weight: 500;
    font-size: 14px;
    margin: 0 0 2px 0;
    padding: 0;
}

.fl4 {
    color: #000000;
    font-weight: 500;
    font-size: 14px;
    padding-right: 30px;
}

.fl5 {
    width: 40px;
}

.fl5 img {
    width: 20px;
}

.fl6 {
    width: 60px;
    white-space: nowrap !important;
}

.fl7 {
    color: #000000;
    font-weight: 500;
    font-size: 14px;
    padding-right: 10px;
    width: 75px;
}

/*-- End Flirt page -------------------------------------------*/

/*--------------------------------------------------------------*/
/*-- Pager -----------------------------------------------------*/
/*--------------------------------------------------------------*/
.pager {
    text-align: left;
}

.pager a {
    display: inline-block;
    color: var(--clr-theme);
    padding: 0 10px;
    margin: 0 2px;
    font-size: 17px;
    font-family: Arial, Helvetica, sans-serif;
}

.pager a:hover, .pager a.active {
    color: var(--clr-secondary);
    text-decoration: none;
}

.pager a.prev:before {
    content: "\f100";
    font-family: FontAwesome, serif;
    margin-right: 5px;
}

.pager a.prev:hover, .pager a.prev.active {
}

.pager a.next:after {
    content: "\f101";
    font-family: FontAwesome, serif;
    margin-left: 5px;
}

.pager a.next:hover, .pager a.next.active {
}

/*-- End Pager -------------------------------------------*/

/*--------------------------------------------------------------*/
/*-- Rating Style ----------------------------------------------*/
/*--------------------------------------------------------------*/
.filled-stars:before,
.grey-stars:before {
    content: "\2605\2605\2605\2605\2605";
    font-size: 24px;
    letter-spacing: 1px;
    line-height: 24px
}

.rating-stars {
    position: relative;
    vertical-align: baseline;
    display: inline-block;
    color: #a4a4a4;
    overflow: hidden;
    height: 24px;
    margin-top: 7px;
    margin-bottom: 7px;
}

.filled-stars {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    overflow: hidden;
    color: #f1c40f;
}

.grey-stars {
    height: 100%
}

/*-- End Rating Style -------------------------------------------*/

/*--------------------------------------------------------------*/
/*-- Local Area ----------------------------------------------*/
/*--------------------------------------------------------------*/
.local-area {
    -webkit-border-radius: 5px;
    -webkit-border-bottom-right-radius: 3px;
    -webkit-border-bottom-left-radius: 3px;
    -moz-border-radius: 5px;
    -moz-border-radius-bottomright: 3px;
    -moz-border-radius-bottomleft: 3px;
    border-radius: 5px;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
}

ul.local-area-list {
    margin: 0;
    padding: 7px;
    list-style: none;
    font-size: 0;
}

ul.local-area-list li {
    margin: 0;
    padding: 2.5%;
    list-style: none;
    width: 50%;
    display: inline-block;
}

ul.local-area-list li img {
    width: 100%;
    border: 1px solid #999999;
}

ul.local-area-list li img:hover {
    opacity: .7;
}

.local-area .btn {
    width: 90%;
    margin-left: 5%;
    margin-bottom: 15px;
}

.local-area h3 {
    margin: 0;
    padding: 10px 20px;
    color: #fff;
    background: var(--clr-theme);
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

/*-- End Local Area -------------------------------------------*/

dl.desc-list {
    margin: 25px 0;
    padding: 0;
    width: 70%;
}

dl.desc-list dt {
    margin: 7px 0;
    padding: 0;
    display: inline-block;
    width: 45%;
    font-weight: 500;
}

dl.desc-list dd {
    margin: 7px 0;
    padding: 0;
    display: inline-block;
    width: 45%;
    font-weight: 500;
}

/*--------------------------------------------------------------*/
/*-- flirt select dropdown -------------------------------------------*/
/*--------------------------------------------------------------*/
.flirtbox {
    width: 100%;
}

ul.splink {
    display: block;
    position: relative;
    padding: 0;
    margin: 0 5% 0 0;
    width: 70%;
    list-style: none;
    float: left;
}

ul.splink.emoticons.flirts {
    width: 100%;
}

ul.splink li {
    padding: 0;
    margin: 0;
    margin-bottom: 10px;
    font-weight: 500;
}

ul.splink ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

ul.splink ul li {
    padding: 0;
    margin: 0;
    list-style: none;
}

ul.splink li a {
    display: block;
    border: 1px solid #CCCCCC;
    border-radius: 3px;
    color: #1c1a1a;
    padding: 8px 20px 8px 57px;
    position: relative;
    text-decoration: none;
    cursor: pointer;
}

ul.splink li a:hover {
    color: var(--clr-secondary);
    text-decoration: none;
    background-color: #e9e9e9;
}

ul.splink li a i {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 50px;
    display: block;
}

ul.splink li a i.love {
    background: url(../images/icon-love4.png) center center no-repeat;
}

ul.splink li a i.xx {
    background: url(../images/icon-love4.png) center center no-repeat;
}

ul.splink .flirts-dropdown {
    position: absolute;
    right: 0;
    left: 0;
    z-index: 99999999;
}

ul.splink .flirts-dropdown .flirts.bordered {
    overflow: hidden;
    border: solid 1px #adadad;
    width: 100%;
    background: #f7f7f7;
}

ul.splink .flirts-dropdown .flirts li a {
    border: none;
}

ul.splink .send_flirt {
    background: url(../images/caret-down.png) right center no-repeat #f7f7f7;
}

.flirtbox .btn {
    width: 25%;
}

/*-- End flirt select dropdown -------------------------------------------*/

/*--------------------------------------------------------------*/
/*-- Searchbar -------------------------------------------*/
/*--------------------------------------------------------------*/
.searchbar {
    background-color: var(--clr-theme);
    padding: 10px 0 14px 0;
    color: #FFFFFF;
}

.searchbar .searchform-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.searchbar .searchform-list li {
    margin: 0;
    padding: 15px 15px 15px 25px;
    list-style: none;
    display: inline-block;
    background: url(../images/devider.png) no-repeat right center;
    vertical-align: top;
}

.searchbar .searchform-list li:first-child {
    padding-left: 0;
}

.searchbar .searchform-list li:last-child {
    background: none;
    padding-right: 0;
    float: right;
}

.searchbar .searchform-list label {
    margin: 0;
    padding: 9px 0 0 0;
    float: left;
    margin-right: 15px;
    font-weight: 500;
}

.searchbar .searchform-list input[type=checkbox] {
    float: left;
    margin-right: 9px;
    margin-top: 11px;
}

.searchbar .searchform-list .select-container {
    background: url(../images/caret-down.png) no-repeat right center #f6f6f8;
    border: none;
    padding-right: 20px;
    float: left;
}

/*-- End Searchbar -------------------------------------------*/

/*--------------------------------------------------------------*/
/*-- Member page -------------------------------------------*/
/*--------------------------------------------------------------*/
ul.userlist-member {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0;
    line-height: 0;
}

ul.userlist-member li {
    margin: 0;
    padding: 15px;
    list-style: none;
    display: inline-block;
    width: 25%;
    vertical-align: top;
    color: #565656;
    font-size: 15px;
    line-height: normal;
}

ul.userlist-member li img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    border: 2px solid #d3d3d3;
    margin-bottom: 10px;
}

ul.userlist-member li:hover img {
    border: 5px solid var(--clr-secondary);
}

ul.userlist-member .filled-stars:before,
ul.userlist-member .grey-stars:before {
    font-size: 17px;
    line-height: 17px
}

ul.userlist-member .rating-stars {
    height: 17px;
    margin-bottom: 0;
    margin-top: 0;
}

ul.userlist-member p {
    margin: 0 0 5px 0;
    padding: 0;
}

ul.userlist-member p.online {
    color: #51aa01;
    background: url(../images/dot.png) no-repeat left center;
    padding-left: 15px;
}

ul.userlist-member p.username {
    font-size: 21px;
    color: #000000;
}

/*-- End Searchbar -------------------------------------------*/

/*--------------------------------------------------------------*/
/*-- Profile page -------------------------------------------*/
/*--------------------------------------------------------------*/
.profilephoto {
    text-align: center;
}

.profilephoto img {
    width: 100%;
}

.box {
    border: 1px solid #d9d9d9;
    background: #FFFFFF;
    padding: 25px;
    margin-bottom: 15px;
}

div.toggle a {
    background: var(--clr-theme);
    border-radius: 5px;
    color: #FFFFFF;
    display: block;
    width: 100%;
    margin: 0 0 10px 0;
    padding: 10px 20px;
    font-size: 17px;
    font-weight: 600;
    position: relative;
    text-decoration: none;
}

div.toggle a[aria-expanded=true]:after {
    content: "";
    position: absolute;
    top: 7px;
    right: 10px;
    display: block;
    width: 31px;
    height: 31px;
    background: url(../images/toggle.png) no-repeat left top;
}

div.toggle a[aria-expanded=false]:after {
    content: "";
    position: absolute;
    top: 7px;
    right: 10px;
    display: block;
    width: 31px;
    height: 31px;
    background: url(../images/toggle.png) no-repeat left bottom;
}

div.toggle a:hover {
    background: var(--clr-secondary);
    text-decoration: none;
}

ul.general-information-fields {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0;
}

ul.general-information-fields li {
    margin: 5px 0;
    padding: 0 30px 0 0;
    list-style: none;
    display: inline-block;
    width: 50%;
    font-size: 15px;
}

ul.general-information-fields label {
    margin: 0;
    padding: 0;
    font-weight: normal;
    width: 70px;
    float: left;
}

ul.general-information-fields input {
    width: calc(100% - 100px);
}

ul.personal-information-fields {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0;
}

ul.personal-information-fields li {
    margin: 5px 0;
    padding: 0 30px 0 0;
    list-style: none;
    display: inline-block;
    width: 50%;
    font-size: 15px;
    font-family: Arial, Helvetica, sans-serif;
}

ul.personal-information-fields label {
    margin: 0;
    padding: 0;
    font-weight: normal;
    width: 110px;
    float: left;
}

ul.personal-information-fields input {
    width: calc(100% - 120px);
}

ul.interests-fields {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0;
}

ul.interests-fields li {
    margin: 5px 0;
    padding: 0 30px 0 0;
    list-style: none;
    display: inline-block;
    width: 50%;
    font-size: 15px;
    font-family: Arial, Helvetica, sans-serif;
}

ul.interests-fields label {
    margin: 0;
    padding: 0;
    font-weight: normal;
    width: 150px;
    float: left;
}

ul.interests-fields input {
    margin-left: 5px;
}

/*-- End Profile page -------------------------------------------*/

/*--------------------------------------------------------------*/
/*-- Notification page -------------------------------------------*/
/*--------------------------------------------------------------*/
ul.notification-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

ul.notification-list li {
    margin: 0;
    padding: 10px;
    list-style: none;
    background: #FFFFFF;
}

ul.notification-list li:nth-child(odd) {
    background: #f6f5f5;
}

ul.notification-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
    float: right;
}

ul.notification-list ul li {
    margin: 0 10px;
    padding: 0;
    list-style: none;
    display: inline-block;
}

ul.password-list {
    margin: 0 0 15px 0;
    padding: 0;
    list-style: none;
    font-size: 0;
}

ul.password-list li {
    margin: 0 0 0 3.5%;
    padding: 0;
    list-style: none;
    display: inline-block;
    width: 31%;
    font-size: 14px
}

ul.password-list li:first-child {
    margin-left: 0;
}

/*-- End Notification page -------------------------------------------*/

/*--------------------------------------------------------------*/
/*-- Gold member -------------------------------------------*/
/*--------------------------------------------------------------*/
.gold-member {
    background: #e2bd40;
    color: #FFFFFF;
    padding: 50px 0;
}

.gold-member h3 {
    color: #FFFFFF;
    text-align: center;
    text-transform: uppercase;
}

.gold-member h3 strong {
    font-weight: 700;
}

ul.gold-member-premium-list {
    margin: 20px 0 0 0;
    list-style: none;
}

ul.gold-member-premium-list li {
    margin: 0;
    padding: 0 0 0 35px;
    list-style: none;
    font-weight: 500;
    font-size: 19px;
    background: url(../images/tick.png) no-repeat left 7px;
    background-size: 19px;
}

.gold-member .leftcol {
    float: left;
    width: 40%;
    text-align: right;
}

.gold-member .leftcol img {
    max-width: 180px;
}

.gold-member .rightcol {
    float: right;
    width: 60%;
}

.payment-mod-gold {
    padding: 50px 0;
}

.payment-mod-gold .desc {
    text-align: center;
    margin: 20px auto;
    max-width: 350px;
}

.payment-mod-gold .desc p {
    margin: 0 0 5px 0;
    padding: 0;
    font-size: 12px;
}

ul.list-credits {
    margin: 0 0 50px 0;
    padding: 0;
    list-style: none;
    font-size: 0;
}

ul.list-credits li {
    margin: 0;
    padding: 0;
    list-style: none;
    color: #fff;
    width: 25%;
    display: inline-block;
    font-size: 15px;
    border: 1px solid #b8b8b8;
}

ul.list-credits li span.credits {
    display: inline-block;
    width: 25%;
}

.plan_select input[type=radio] {
    display: none;
}

.plan_select input[type=radio] + label {
    margin: 0;
    padding: 10px 0 15px 0;
    display: block;
    cursor: pointer;
    font-family: Arial, Helvetica, sans-serif;
    color: #000000;
    font-weight: 500;
    background: #e2e2e1; /* Old browsers */
    background: -moz-linear-gradient(top, #e2e2e1 0, #c0bfc0 100%);
    background: -webkit-linear-gradient(top, #e2e2e1 0, #c0bfc0 100%);
    background: linear-gradient(to bottom, #e2e2e1 0, #c0bfc0 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e2e2e1', endColorstr='#c0bfc0', GradientType=0); /* IE6-9 */

}

.plan_select input[type=radio] + label:hover {
    color: #FFFFFF;
    background: #373b6e; /* Old browsers */
    background: -moz-linear-gradient(top, #373b6e 0, #25273e 100%);
    background: -webkit-linear-gradient(top, #373b6e 0, #25273e 100%);
    background: linear-gradient(to bottom, #373b6e 0, #25273e 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#373b6e', endColorstr='#25273e', GradientType=0); /* IE6-9 */
}

.plan_select input[type=radio]:checked + label {
    color: #FFFFFF;
    background: #373b6e; /* Old browsers */
    background: -moz-linear-gradient(top, #373b6e 0, #25273e 100%);
    background: -webkit-linear-gradient(top, #373b6e 0, #25273e 100%);
    background: linear-gradient(to bottom, #373b6e 0, #25273e 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#373b6e', endColorstr='#25273e', GradientType=0); /* IE6-9 */
}

.plan_select p.p0 {
    padding: 0;
    margin: 0;
    height: 50px;
    background: url(../images/radio.png) no-repeat center 15px;
}

.plan_select input[type=radio]:checked + label p.p0 {
    background: url(../images/tick2.png) no-repeat center 15px;
    background-size: 25px;
}

.plan_select p.p1 {
    padding: 0;
    margin: 0 0 5px 0;
    text-align: center;
    font-size: 17px;
}

.plan_select p.p2 {
    padding: 0;
    margin: 0 0 15px 0;
    text-align: center;
    font-size: 14px;
}

.plan_select p.p3 {
    font-size: 25px;
    padding: 0;
    margin: 0 0 15px 0;
    text-align: center;
    font-weight: bold;
}

.plan_select p.p4 {
    font-size: 13px;
    padding: 0;
    margin: 0;
    text-align: center;
}

ul.list-credits2 {
    margin: 0;
    padding: 0;
    list-style: none;
}

ul.list-credits2 li {
    margin: 0;
    padding: 0;
    list-style: none;
    display: block;
    width: 100%;
}

.paymethod_select input[type=radio] {
    display: none;
}

.paymethod_select input[type=radio] + label {
    margin: 0 0 12px 0;
    padding: 0;
    display: block;
    cursor: pointer;
    font-family: Arial, Helvetica, sans-serif;
    color: #000000;
    border-radius: 5px;
    border: 1px solid #b8b8b8;
    font-size: 18px;
    font-weight: 500;
    background: #e2e2e1; /* Old browsers */
    background: -moz-linear-gradient(top, #e2e2e1 0, #c0bfc0 100%);
    background: -webkit-linear-gradient(top, #e2e2e1 0, #c0bfc0 100%);
    background: linear-gradient(to bottom, #e2e2e1 0, #c0bfc0 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e2e2e1', endColorstr='#c0bfc0', GradientType=0); /* IE6-9 */

}

.paymethod_select input[type=radio] + label:hover {
    color: #FFFFFF;
    background: #373b6e; /* Old browsers */
    background: -moz-linear-gradient(top, #373b6e 0, #25273e 100%);
    background: -webkit-linear-gradient(top, #373b6e 0, #25273e 100%);
    background: linear-gradient(to bottom, #373b6e 0, #25273e 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#373b6e', endColorstr='#25273e', GradientType=0); /* IE6-9 */
}

.paymethod_select input[type=radio]:checked + label {
    color: #FFFFFF;
    background: #373b6e; /* Old browsers */
    background: -moz-linear-gradient(top, #373b6e 0, #25273e 100%);
    background: -webkit-linear-gradient(top, #373b6e 0, #25273e 100%);
    background: linear-gradient(to bottom, #373b6e 0, #25273e 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#373b6e', endColorstr='#25273e', GradientType=0); /* IE6-9 */
}

.paymethod_select p {
    display: inline-block;
    margin: 0;
    padding: 14px 0;
}

.paymethod_select p.p0 {
    background: url(../images/radio.png) no-repeat 20px center;
    width: 100px;
    padding-left: 50px;
    text-align: right;
}

.paymethod_select input[type=radio]:checked + label p.p0 {
    background: url(../images/tick2.png) no-repeat 20px center;
    background-size: 25px;
}

.paymethod_select p.p1 {
    margin-left: 20px;
    text-align: center;
}

.paymethod_select p.p0.p10 {
    width: 160px;
}

.paymethod_select p.p11 {
    margin-left: 10px;
    text-align: center;
    width: calc(100% - 280px);
}

.paymethod_select p.p12 {
    text-align: right;
    width: 80px;
}

.btn-submit-pay {
    width: 100%;
    height: 100%;
    line-height: 66px;
    display: block;
    margin-bottom: 7px;
    border: 1px solid #ff9d00;
    font-size: 30px;
    font-weight: 700;
    color: #000;
    cursor: pointer;
    border-radius: 5px;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
    background: #ffca15; /* Old browsers */
    background: -moz-linear-gradient(top, #ffca15 0, #ff9d00 100%);
    background: -webkit-linear-gradient(top, #ffca15 0, #ff9d00 100%);
    background: linear-gradient(to bottom, #ffca15 0, #ff9d00 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffca15', endColorstr='#ff9d00', GradientType=0);
}

.btn-submit-pay:hover {
    background: #ff9d00; /* Old browsers */
    background: -moz-linear-gradient(top, #ff9d00 0, #da8600 98%);
    background: -webkit-linear-gradient(top, #ff9d00 0, #da8600 98%);
    background: linear-gradient(to bottom, #ff9d00 0, #da8600 98%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff9d00', endColorstr='#da8600', GradientType=0);
}

/* Flirts emoji */
ul.splink.flirts {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

ul.splink.flirts li {
    margin-bottom: 5px !important;
}

ul.splink li a i.nice {
    background: url(../images/emojis/heart_eyes.png) center center no-repeat #F7F7F7;
    background-size: 70%;
}

ul.splink li a i.rose {
    background: url(../images/emojis/rose.png) center center no-repeat #F7F7F7;
    background-size: 70%;
}

ul.splink li a i.hug {
    background: url(../images/emojis/lips.png) center center no-repeat #F7F7F7;
    background-size: 70%;
}

ul.splink li a i.wink {
    background: url(../images/emojis/wink.png) center center no-repeat #F7F7F7;
    background-size: 70%;
}

ul.splink li a i.spank {
    background: url(../images/emojis/underage.png) center center no-repeat #F7F7F7;
    background-size: 70%;
}

ul.splink li a i.kiss {
    background: url(../images/emojis/map.png) center center no-repeat #F7F7F7;
    background-size: 70%;
}

ul.splink li a i.like {
    background: url(../images/emojis/thumbsup.png) center center no-repeat #F7F7F7;
    background-size: 70%;
}

ul.splink li a i.dance {
    background: url(../images/emojis/dancer.png) center center no-repeat #F7F7F7;
    background-size: 70%;
}

.flirt .emoji {
    float: left;
    width: 25px;
    height: 25px;
    margin-right: 15px;
}

.emoji.nice {
    background: url(../images/emojis/heart_eyes.png) center center no-repeat;
    background-size: 100%;
}

.emoji.rose {
    background: url(../images/emojis/rose.png) center center no-repeat;
    background-size: 100%;
}

.emoji.hug {
    background: url(../images/emojis/lips.png) center center no-repeat;
    background-size: 100%;
}

.emoji.wink {
    background: url(../images/emojis/wink.png) center center no-repeat;
    background-size: 100%;
}

.emoji.spank {
    background: url(../images/emojis/underage.png) center center no-repeat;
    background-size: 100%;
}

.emoji.kiss {
    background: url(../images/emojis/map.png) center center no-repeat;
    background-size: 100%;
}

.emoji.like {
    background: url(../images/emojis/thumbsup.png) center center no-repeat;
    background-size: 100%;
}

.emoji.dance {
    background: url(../images/emojis/dancer.png) center center no-repeat;
    background-size: 100%;
}

img.blur {
    -webkit-filter: blur(7px);
    filter: blur(7px);
}

.emoticons-menu {
    display: block;
    position: absolute;
    z-index: 9999;
    list-style: none;
    font-size: 14px;
    max-width: 140px;
    list-style-image: none !important;
    padding: 5px !important;
    margin: 0 !important;
    background-color: #fff;
    border-radius: 4px;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .15);
}

#dropdown-emoticons li {
    float: left;
    width: 24px;
    padding: 4px 2px 0 2px;
    height: 30px;
    margin: 0 !important;
}

#dropdown-emoticons li:hover {
    background-color: #d9d9d9;
}

textarea.noglow {
    overflow: auto;
    outline: none;

    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.mobile-only {
    display: none !important;
}

/*--------------------------------------------------------------*/
/*-- Modal Vertically Center -------------------------------------------*/
/*--------------------------------------------------------------*/
.modal {
    text-align: center;
    padding: 0 !important;
}

.modal:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -4px;
}

.modal-dialog {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
}

.modal-body {
    margin: 15px !important;
}

ul.star {
    margin: 0;
    padding: 0;
    list-style: none;
}

ul.star li {
    margin: 0;
    padding: 2px 0 2px 10px;
    list-style: none;
    background: url(../images/sq.gif) no-repeat left 9px;
}


/*--------------------------------------------------------------*/
/*-- Modal Vertically Center -------------------------------------------*/
/*--------------------------------------------------------------*/

.credit-bundle {
    background: #f6f6f6;
    padding: 25px;
    padding-bottom: 25px;
    margin: 34px 0 20px 0;
    clear: both;
    text-align: center;
}

.credit-bundle h3 {
    color: #000000;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 35px;
}

.credit-bundle .whitebox {
    padding: 7px;
    width: 100%;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    color: #FFFFFF;
    background: #373b6e;
    border-radius: 5px;
    display: table;
}

.credit-bundle .whitebox .left {
    width: 70%;
    text-align: center;
    padding: 10px 10px 10px 60px;
    display: table-cell;
    vertical-align: middle;
}

.credit-bundle .whitebox .left.icon-coin {
    background: url(../images/coin.png) no-repeat 10px center;
}

.credit-bundle .whitebox .left.icon-piggybank {
    background: url(../images/piggybank.png) no-repeat 10px center;
}

.credit-bundle .whitebox .right {
    width: 30%;
    text-align: right;
    display: table-cell;
    vertical-align: middle;
}

.credit-bundle .whitebox h4 {
    margin: 0;
    padding: 0;
    font-size: 19px;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
}

.credit-bundle .whitebox h4 strong {
    font-weight: 700;
}

a.btn {
    margin: 0;
}

.credit-bundle .purple {
    background: #f01467;
    color: #fff;
}

.credit-bundle .purple:hover {
    background: #ce0a54;
    color: #fff;
}

.or {
    text-align: center;
    width: 100%;
    margin: 5px auto;
    font-size: 25px;
    color: #000000;
}

ul.slide-list {
    display: table;
    vertical-align: middle;
    margin-bottom: 0;
}

ul.slide-list li {
    display: table-cell;
    padding: 0 7px;
    margin-bottom: 0;
    margin-top: 0;
}

/*--------------------------------------------------------------*/
/*-- Tooltip classes --------------------------------------------*/
/*--------------------------------------------------------------*/
.ui-tooltip, .arrow:after {
    background: black;
    border: 2px solid white;
}

.ui-tooltip {
    padding: 10px 20px;
    color: white;
    border-radius: 10px;
    box-shadow: 0 0 7px black;
    opacity: 0.8;
    background-color: black;
}

.ui-tooltip-content {
    font-size: 12px;
}

.arrow {
    width: 70px;
    height: 16px;
    overflow: hidden;
    position: absolute;
    left: 50%;
    margin-left: -35px;
    bottom: -16px;
    opacity: 0.8;
}

.arrow.top {
    top: -16px;
    bottom: auto;
}

.arrow.left {
    left: 20%;
}

.arrow:after {
    content: "";
    position: absolute;
    left: 20px;
    top: -20px;
    width: 25px;
    height: 25px;
    box-shadow: 6px 5px 9px -9px black;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.arrow.top:after {
    bottom: -20px;
    top: auto;
}

/*--------------------------------------------------------------*/
/*-- Margin classes --------------------------------------------*/
/*--------------------------------------------------------------*/
.margin-top-5 {
    margin-top: 5px;
}

.margin-top-10 {
    margin-top: 10px;
}

.margin-top-15 {
    margin-top: 15px;
}

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

/* Custom classes */
.mousepointer {
    cursor: pointer;
}

.uppercase {
    text-transform: uppercase;
}

/* Activation pop up */
.modal-activation {
    background-image: url('../images/activate-model.jpg') !important;
    background-repeat: no-repeat !important;
    background-position: bottom right !important;
}

.ui-autocomplete {
    z-index: 99999999999;
}

/* Recaptcha responsive */
@media screen and (max-height: 575px) {
    #rc-imageselect, .g-recaptcha {
        transform: scale(0.77);
        -webkit-transform: scale(0.77);
        transform-origin: 0 0;
        -webkit-transform-origin: 0 0;
    }
}

.interest_profile div {
    padding: 8px;
    padding-left: 0;
}

.checkicon {
    height: 20px;
}

.profile-subtitle {
    margin-top: 15px;
}

/* Unread circle blink */
.squarebuttons > li > a > .badge, .side-navigation > .mobile-only > span {
    animation: blinking_animation 1.8s infinite;
    -webkit-animation: blinking_animation 1.8s infinite;
}

@-webkit-keyframes blinking_animation {
    0% {
        opacity: 0;
    }
    49% {
        opacity: 1;
    }
    51% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

#freeCreditModal {
    background-color: rgba(0, 0, 0, 0.5);
}

.free-credit_modal {
    border-radius: 10px !important;
    padding: 0;
    margin: 0;
    margin-bottom: 20px;
    margin-top: 20px;
}

.free-credit_modal .free-credit_pop-up {
    position: relative;
    width: 100%;
    min-height: 290px;
    padding: 10px;
    text-align: center;
}

.free-credit_modal > .free-credit_pop-up_1 > img {
    position: absolute;
    top: 0;
    left: 0;
    height: 288px;
    height: 100%;
    border-radius: 9px 0 0 9px;
}

.free-credit_modal > .free-credit_pop-up_2 > img {
    position: absolute;
    top: 0;
    right: 0;
    height: 288px;
    height: 100%;
    border-radius: 0 9px 9px 0;
}

.free-credit_modal .free-credit_pop-up_1 .pop-up_content {
    position: relative;
    float: right;
    width: 170px;
    width: calc(100% - 170px);
    z-index: 10;
}

.free-credit_modal .free-credit_pop-up_2 .pop-up_content {
    position: relative;
    float: left;
    width: 170px;
    width: calc(100% - 170px);
    z-index: 10;
}

.free-credit_modal .pop-up_logo {
    display: block;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    padding-top: 5px;
    padding-bottom: 5px;
}

.free-credit_modal .pop-up_text {
    display: block;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 8px;
    margin-top: 5px;
    width: 100%;
    font-weight: bold;
    font-size: 18px;
    line-height: 24px;
}

.free-credit_modal .pop-up_text span {
    text-decoration: underline;
    font-size: 22px;
}

.free-credit_modal .free-credit_pop-up_1 .yes-button {
    display: block;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
    margin: 10px;
    margin-top: 10px;
    margin-bottom: 5px;
    background-color: orange;
    border-radius: 6px;
    color: white;
    font-weight: bold;
    font-size: 22px;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 2px 2px 2px black;
    cursor: pointer;
    text-decoration: none;
}

.free-credit_modal .free-credit_pop-up_2 .yes-button {
    display: block;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
    margin: 10px;
    margin-top: 5px;
    margin-bottom: 5px;
    background-color: #F36296;
    border-radius: 6px;
    color: white;
    font-weight: bold;
    font-size: 22px;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 2px 2px 2px black;
    cursor: pointer;
    text-decoration: none;
}

.free-credit_modal .later-button {
    display: block;
    position: relative;
    color: grey;
    font-size: 16px;
    text-decoration: underline;
    cursor: pointer;
}

.free-credit_modal .desktop_image {
    display: block;
}

.free-credit_modal .mobile_image {
    display: none;
}

@media (max-width: 640px) {
    .free-credit_modal .desktop_image {
        display: none;
    }

    .free-credit_modal .mobile_image {
        display: block;
    }

    .free-credit_modal .free-credit_pop-up_2 .pop-up_content {
        position: relative;
        float: left;
        width: calc(100% - 140px);
        z-index: 10;
    }

    .free-credit_modal .free-credit_pop-up_1 .pop-up_content {
        position: relative;
        float: right;
        width: 170px;
        width: calc(100% - 140px);
        z-index: 10;
    }
}

.location_modal {
    border-radius: 10px !important;
    padding: 0 !important;
    margin: 0;
    margin-bottom: 20px;
    margin-top: 50px;
    width: 100% !important;
}

.location_modal .location_pop-up {
    position: relative;
    width: 100%;
    min-height: 290px;
    padding: 10px;
    text-align: center;
    color: black;
}

.location_modal > .location_pop-up_1 > img {
    position: absolute;
    top: 0;
    left: 0;
    height: 288px;
    height: 100%;
    max-width: 172.5px;
    border-radius: 9px 0 0 9px;
}

.location_modal .location_pop-up_1 .pop-up_content {
    position: relative;
    float: right;
    width: 170px;
    width: calc(100% - 170px);
    z-index: 10;
    font-size: 14px;
}

.location_modal .pop-up_logo {
    display: block;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    padding-top: 5px;
    padding-bottom: 5px;
}

.location_modal .pop-up_text {
    display: block;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 8px;
    margin-top: 5px;
    width: 100%;
    font-weight: bold;
    font-size: 18px;
    line-height: 24px;
}

.location_modal .pop-up_text span {
    text-decoration: underline;
    font-size: 22px;
}

.location_modal .location_pop-up_1 .yes-button {
    display: block;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
    margin: 10px;
    margin-top: 10px;
    margin-bottom: 0;
    background-color: orange;
    border-radius: 6px;
    color: white;
    font-weight: bold;
    font-size: 22px;
    max-width: 380px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 2px 2px 2px black;
    cursor: pointer;
    text-decoration: none;
}

.location_modal .later-button {
    display: block;
    position: relative;
    color: grey;
    font-size: 16px;
    text-decoration: underline;
    cursor: pointer;
}

.location_modal .desktop_image {
    display: block;
    border-right-color: grey;
    border-right-width: 1px;
    border-right-style: solid;
}

.location_modal .mobile_image {
    display: none;
    border-right-color: grey;
    border-right-width: 1px;
    border-right-style: solid;
}

.location_modal .popup_error_message {
    margin-left: auto;
    margin-right: auto;
    padding-top: 5px;
    padding-bottom: 5px;
    max-width: 380px;
    margin-bottom: 5px;
}

/*
.popup_error_message{
	display: none;
}
*/

.location_modal .match_location_input {
    display: block;
    width: 100%;
    background-color: rgba(0, 0, 0, .1);
    border: 1px solid grey;
    color: black;
    text-align: center;
    padding: 10px 10px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    -webkit-appearance: none;
    outline: 0;
    font-size: 20px;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 640px) {
    .location_modal .desktop_image {
        display: none;
    }

    .location_modal .mobile_image {
        display: block;
    }

    .location_modal .location_pop-up_1 .pop-up_content {
        position: relative;
        float: right;
        width: 170px;
        width: calc(100% - 140px);
        z-index: 10;
    }
}

.p-block {
    font-family: 'sans-serif', serif !important;
}

.p-block p, .p-block ul li {
    font-family: 'sans-serif', serif;
    font-size: 13px !important;
    line-height: 16px;
}

.p-block h3 {
    font-size: 24px;
}

#ageVerification {
    font-family: 'sans-serif' !important;
}

.payment-logos {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
}

.payment-logos img {
    height: 36px;
}

.centered-backgroud {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.bx-wrapper {
    margin: auto;
}