
/* ============================================
   TWIGO MODERN THEME - 2025 UI/UX FRAMEWORK
   ============================================ */

/* Enhanced Custom Properties for Modern Dating App */
:root {
    --primary-gradient: linear-gradient(145deg, #4A90E2 0%, #357ABD 100%);
    --secondary-gradient: linear-gradient(145deg, #F44336 0%, #D32F2F 100%);
    --success-gradient: linear-gradient(145deg, #4CAF50 0%, #45A049 100%);
    --warning-gradient: linear-gradient(145deg, #FF9800 0%, #F57C00 100%);
    --danger-gradient: linear-gradient(145deg, #E91E63 0%, #C2185B 100%);
    --purple-gradient: linear-gradient(145deg, #9C27B0 0%, #7B1FA2 100%);
    
    --primary-color: #4A90E2;
    --secondary-color: #F44336;
    --success-color: #4CAF50;
    --warning-color: #FF9800;
    --danger-color: #E91E63;
    --purple-color: #9C27B0;
    
    --text-primary: #2d3748;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --text-light: #a0aec0;
    --text-white: #ffffff;
    
    --bg-primary: #ffffff;
    --bg-secondary: #f7fafc;
    --bg-tertiary: #edf2f7;
    --bg-dark: #1a202c;
    
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;
    
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    --border-radius-sm: 0.375rem;
    --border-radius-md: 0.5rem;
    --border-radius-lg: 0.75rem;
    --border-radius-xl: 1rem;
    --border-radius-2xl: 1.5rem;
    
    --transition-fast: all 0.15s ease-in-out;
    --transition-normal: all 0.3s ease-in-out;
    --transition-slow: all 0.5s ease-in-out;
}

/* Essential Animations */
@keyframes sparkle {
    0%, 100% { 
        opacity: 0.4; 
        transform: scale(0.8); 
    }
    50% { 
        opacity: 1; 
        transform: scale(1.2); 
    }
}

@keyframes pulse {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1); 
    }
    50% { 
        opacity: 0.7; 
        transform: scale(1.1); 
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

@keyframes slideInRight {
    from { 
        opacity: 0; 
        transform: translateX(30px); 
    }
    to { 
        opacity: 1; 
        transform: translateX(0); 
    }
}

@keyframes glow {
    0%, 100% { 
        box-shadow: 0 0 10px rgba(74, 144, 226, 0.3); 
    }
    50% { 
        box-shadow: 0 0 25px rgba(74, 144, 226, 0.6); 
    }
}

/* Modern Story Timeline */
#storytime .story-timeline-line-active{
    background: var(--primary-gradient) !important;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}
/* Modern Gradient Classes - Enhanced */
.desire-gradient1{
    background: var(--primary-gradient) !important;
    border-radius: var(--border-radius-xl);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
    transition: var(--transition-normal);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.desire-gradient1:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(74, 144, 226, 0.5);
}

.desire-gradient2{
    background: var(--secondary-gradient) !important;
    border-radius: var(--border-radius-xl);
    box-shadow: 0 6px 20px rgba(244, 67, 54, 0.4);
    transition: var(--transition-normal);
    border: 1px solid rgba(255,255,255,0.1);
}

.desire-gradient2:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 30px rgba(244, 67, 54, 0.5);
}

.desire-gradient3{
    background: var(--success-gradient) !important;
    border-radius: var(--border-radius-xl);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
    transition: var(--transition-normal);
    border: 1px solid rgba(255,255,255,0.1);
}

.desire-gradient4{
    background: var(--warning-gradient) !important;
    border-radius: var(--border-radius-xl) !important;
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
    transition: var(--transition-normal);
    border: 1px solid rgba(255,255,255,0.1);
}

.desire-gradient5 {
    background: var(--danger-gradient) !important;
    border-radius: var(--border-radius-xl);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
    transition: var(--transition-normal);
    border: 1px solid rgba(255,255,255,0.1);
}

.desire-gradient6 {
    background: var(--purple-gradient) !important;
    border-radius: var(--border-radius-xl);
    box-shadow: 0 6px 20px rgba(156, 39, 176, 0.4);
    transition: var(--transition-normal);
    border: 1px solid rgba(255,255,255,0.1);
}

/* Modern Card Components */
.desire-card {
    background: var(--bg-primary);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: var(--transition-normal);
    overflow: hidden;
}

.desire-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.desire-card-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-secondary);
}

.desire-card-body {
    padding: 1.5rem;
}

.desire-card-footer {
    padding: 1rem 1.5rem;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
}

/* Modern Button System */
.desire-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.25rem;
    transition: var(--transition-fast);
    cursor: pointer;
    border: none;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.desire-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition-normal);
}

.desire-btn:hover:before {
    left: 100%;
}

.desire-btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: var(--shadow-md);
}

.desire-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.desire-btn-secondary {
    background: var(--secondary-gradient);
    color: white;
    box-shadow: var(--shadow-md);
}

.desire-btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.desire-btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

/* Modern Input System */
.desire-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-md);
    font-size: 1rem;
    transition: var(--transition-fast);
    background: var(--bg-primary);
}

.desire-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Modern Profile Components */
.desire-profile-card {
    background: var(--bg-primary);
    border-radius: var(--border-radius-2xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
}

.desire-profile-header {
    background: var(--primary-gradient);
    padding: 2rem 1.5rem 4rem;
    text-align: center;
    position: relative;
}

.desire-profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.desire-profile-info {
    padding: 1.5rem;
    text-align: center;
    margin-top: -3rem;
    position: relative;
    z-index: 1;
}

.desire-profile-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.desire-profile-age {
    background: var(--secondary-gradient);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
}

/* Modern Stats Grid */
.desire-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    padding: 1.5rem;
}

.desire-stat-item {
    background: var(--bg-secondary);
    padding: 1.5rem 1rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: var(--transition-normal);
    border: 1px solid var(--border-light);
}

.desire-stat-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.desire-stat-value {
    font-size: 1.875rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.desire-stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Modern Menu System */
.desire-menu {
    background: var(--bg-primary);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.desire-menu-item {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition-fast);
    cursor: pointer;
    text-decoration: none;
    color: var(--text-primary);
}

.desire-menu-item:last-child {
    border-bottom: none;
}

.desire-menu-item:hover {
    background: var(--bg-secondary);
    transform: translateX(4px);
}

.desire-menu-icon {
    width: 24px;
    height: 24px;
    margin-right: 1rem;
    background: var(--primary-gradient);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.desire-menu-text {
    flex: 1;
    font-weight: 500;
}

.desire-menu-arrow {
    width: 20px;
    height: 20px;
    opacity: 0.5;
    transition: var(--transition-fast);
}

.desire-menu-item:hover .desire-menu-arrow {
    opacity: 1;
    transform: translateX(4px);
}

.box-shadow-chat{
  
    border-radius: 15px; 
}
.chat-message__text{
    margin-top: 2px !important;
}
.chat-input__textarea::placeholder{
    color: #333 !important;
}
.chat-send{
    bottom: -2px !important;
}
.pulsateDiscover {
    -webkit-animation-name: pulsateDiscover !important;
    animation-name: pulsateDiscover !important;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-animation-duration: 1.1s;
    animation-duration: 1.1s;
}




@keyframes pulsateDiscover {
    0% {
        -webkit-transform: scale3d(0.8, 0.8, 0.8);
        transform: scale3d(0.8, 0.8, 0.8)
    }      
    50% {
        -webkit-transform: scale3d(0.8, 0.8, 0.8);
        transform: scale3d(0.8, 0.8, 0.8)
    }    
    100% {
        -webkit-animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
        animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

.profile-user-info__age{
    padding-left: 15px !important;
    padding-right: 5px;
    color: #fff;
    border-radius: 10px;
    font-size: 12px;
    margin-left: 15px;
    padding-top: 4px !important;
    line-height: 12px;
    padding-bottom: 4px!important;
}

.desire-font{
    font-family: 'Inter' !important;
}

.comforta{
    font-family: 'Inter' !important;
}
.tab__label{
    text-transform: none !important;
}
.multimedia__image{
    background: #dad9e2;
}

.encounters-card__floating{
    left: 0;
    bottom: 0;
    height: 115px;
    width: 100%;
}
.encounters-card__info{
    height: 115px;
    border-radius: 0;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.encounters-card__name{
    text-align: center !important;
    margin-top: 35px;
}
.encounters-card__announce{
    text-align: center !important;
    color: #aaa !important;
    margin-top: 8px    
}
.profile-user-info__text{
    font-size: 25px;
    font-weight: 500 !important;
    color: #333;
}

.tab.is-active{
    color: #ff689a;
}
.tab.is-active .tab__label{
    color: #ff689a !important;
}


.desire-meet-results{
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    top: 25px;
}

.desire-meet-card{
    position: relative !important;
    width: 47.5%;
    height:28vh;
    margin-right: 3%;
    display: inline-block;
    background: #dad9e2;
    border-radius: 5px;
    margin-bottom:3px !important;
    overflow-y: hidden;
    overflow-x: hidden;
    margin-top: 0px !important;
}
.desire-meet-card:nth-of-type(2n){
    margin-right:0;
}


.desire-meet-card .meet-user-name{
    position: absolute;
    z-index: 2;
    bottom: 4px;
    left: 10px;
    width: 80%; 
    color: #fff;
    font-weight: 400;
    overflow-x: hidden;
    text-overflow: ellipsis;
}

.desire-meet-card .meet-user-gender{
    position: absolute;
    z-index: 2;
    bottom: 5px;
    right: 10px;
    width: 37px;
    height: 16px; 
    color: #fff;
    font-weight: 400;
    border-radius: 10px;
}

.desire-meet-card .user-gender svg{
    border-radius: 3px !important;
    width: 37px !important;
    height: 16px !important;     
}

.desire-meet-card .profile-photo{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 5px;
    background-size:   cover;
    background-repeat: no-repeat;
    background-position: top center;  
}

.desire-meet-card .footer-gradient {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: -25%;
    left: 0;
    width: 100%;
    height: 45%;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 1)));
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0,1) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 1) 100%);
    opacity: 1
}


.fadeInRightMeet {
    -webkit-animation-name: fadeInRightMeet;
    animation-name: fadeInRightMeet;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;    
}

@keyframes fadeInRightMeet {
    0% {
        -webkit-transform: translate3d(400px, 0, 0);
        transform: translate3d(400px, 0, 0);
        opacity: 0
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

.fadeInBottomChat {
    -webkit-animation-name: fadeInBottomChat;
    animation-name: fadeInBottomChat;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;  
}

@keyframes fadeInBottomChat {
    0% {
        -webkit-transform: translate3d(0, 400px, 0);
        transform: translate3d(0, 400px, 0);
        opacity: 0
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}


.section-footer-effect {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(240, rgba(240, 240, 240, 0)), to(rgba(240, 240, 240, 1)));
    background: -webkit-linear-gradient(top, rgba(240, 240, 240, 0) 0, rgba(240, 240, 240,1) 100%);
    background: linear-gradient(to bottom, rgba(240, 240, 240, 0) 0, rgba(240, 240, 240, 1) 100%);
}

.wrapper-add-to-spotlight{
    position: relative;
    width: 90%;
    height: 90%;
    margin-left:5%;
    margin-top: 5%;
    border-radius: 5px;
    background: rgba(255,255,255,.9);
}

.wrapper-add-to-spotlight .top-icon{
  left:0;
  right:0;
  top:30px;
  margin-left: auto;
  margin-right: auto;

  position: absolute;
  width: 40%;
  height: 40px;
}

.wrapper-add-to-spotlight .spotlight-text{
  left:0;
  right:0;
  top:85px;
  margin-left: auto;
  margin-right: auto;

  position: absolute;
  width: 98%;
  height: 40px;
  text-align: center;
  font-size: 15px;
}

.wrapper-add-to-spotlight .spotlight-activate{
  left:0;
  right:0;
  top:140px;
  margin-left: auto;
  margin-right: auto;

  position: absolute;
  width: 70%;
  height: 30px;
  text-align: center;
  font-size: 15px;
  border-radius: 15px;
  color: #fff;
  line-height: 30px;
}

.range input::-webkit-slider-thumb {
    border:3px solid #fff;
    background: -moz-linear-gradient(95deg, rgba(255,98,165,1) 0%, rgba(255,98,165,1) 22%, rgba(255,137,97,1) 100%)!important; /* ff3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255,137,97,1)), color-stop(78%, rgba(255,98,165,1)), color-stop(100%, rgba(255,98,165,1)))!important; /* safari4+,chrome */
    background: -webkit-linear-gradient(95deg, rgba(255,98,165,1) 0%, rgba(255,98,165,1) 22%, rgba(255,137,97,1) 100%)!important; /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(95deg, rgba(255,98,165,1) 0%, rgba(255,98,165,1) 22%, rgba(255,137,97,1) 100%)!important; /* opera 11.10+ */
    background: -ms-linear-gradient(95deg, rgba(255,98,165,1) 0%, rgba(255,98,165,1) 22%, rgba(255,137,97,1) 100%)!important; /* ie10+ */
    background: linear-gradient(355deg, rgba(255,98,165,1) 0%, rgba(255,98,165,1) 22%, rgba(255,137,97,1) 100%)!important; /* w3c */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff8961', endColorstr='#ff62a5',GradientType=0 ); /* ie6-9 */    
}

.tabbar{
    border-top:1px solid #e3e3e3;
    background: #f8f8f8;
}

.border-bottom-selector{
    border-bottom:1px solid #f0f0f0;
    padding: 15px;
    height: 50px !important;
}
.border-bottom-selector-last{
    padding: 15px;
    height: 50px !important;
}

.font-dark-gray{
    color: #333 !important;
    letter-spacing: 1px;
}

.csms-spring-box__media{
    margin: auto 15px auto 0;
}

.pointer-events-auto{
    pointer-events: auto !important;
}

.page.stickers .stickers-top {
    position: fixed;
    z-index: 2;
    bottom: 440px;
    right: 0;
    left: 0;
    height: 200px;
    background: none;
}

.desire-header {
    position: fixed !important;
    top: 0px;
    left: 0;
    width: 100%;
    height: 98px;
    border-bottom: 1px solid #e3e3e3;
    background: #f8f8f8;
    z-index: 999;
}

.desire-header-title {
    position: absolute;
    top: 28px;
    left: 20px;
    width: 100%;
}

.desire-header-title-h2 {
    font-weight: 700;
    color: #333;
    letter-spacing: 1.3px;
    font-size: 34px;
}

.desire-header-chat-subtext {
    position: absolute;
    top: 65px;
    left: 22px;
    width: 100%;
}

.desire-header-chat-subtext-content {
    font-weight: 700;
    color: #333;
    letter-spacing: 1.3px;
    font-size: 34px;
}

.desire-header-chat-writing-online {
    font-size: 0.8rem;
    color: #59c449;
    font-weight: 400;
}

.desire-header-chat-offline {
    font-size: 0.8rem;
    color: #999;
    font-weight: 400;
}

.desire-header-chat-writing {
    font-size: 0.8rem;
    color: #999;
    font-weight: 400;
}

.desire-header-chat-photo {
    position: absolute;
    top: 22px;
    right: 20px;
    width: auto;
}

.w50-h50{
    width: 55px !important;
    height: 55px !important;
}

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

.font-w-500{
    font-weight: 500 !important;
}

.font-w-700{
    font-weight: 700 !important;
} 

.font-s-16{
    font-size: 16px!important;
}

.font-c-white{
    color: #fff !important;
}

.profile-info__title{
    color: #444 !important;
}
.profile-preview__photos{
    max-height: 500px!important;
    height: 130vw!important;
}

.profile-view-story-text {
    position: absolute;
    height: 20px;
    width: 80%;
    text-align: center;
    border-radius: 5px;
    top: 48px;
    z-index: 2;
    margin-left: 10%;
}

.profile-view-story-text span {
    color: #fff;
    font-weight: 500;
    font-size: 0.6rem;
}

.profile-view-story-icon {
    border: 1px solid #ec448b;
    height: 100%;
    width: 100%;
    border-radius: 50%
}

.profile-view-story-border-matches {
    border: 2px solid #ec448b !important;
}

.border-color-white {
    border-color: #fff !important;
}

.settings-t-list {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
}

.settings-t-list-right {
    position: relative;
    width: 100%;
    height: 50px;
    background: #efefef;
    border-radius: 5px;
}

.settings-t-list-right-tl {
    position: absolute;
    top: 15px;
    left: 10px;
    height: 20px;
    line-height: 20px;
    color: #111;
    font-size: 14px;
}

.settings-t-list-right-tr {
    position: absolute;
    top: 15px;
    right: 40px;
    height: 20px;
    line-height: 20px;
    color: #999
}

.settings-t-list-right-icon {
    position: absolute;
    top: 15px;
    right: 10px;
    height: 20px;
}

.settings-t-list-right-distance {
    position: absolute;
    top: 0px;
    right: 20px;
    height: 20px;
    line-height: 20px;
    color: #999;
}

.cls-1 {
    fill: #c1c0c9 !important;
}



.desire-bg{
    background: #f8f8f8;
}



.border-none{
    border: none !important;
}

.div-c1{
    border:none;
    background: #fff
}
.text-gray-777{
    color:#777;
}
.ml-5{
    margin-left:5%;    
}

.h-140{
    height: 138px;
}
.mt-5px{
    margin-top: 5px   
}
.mt-6px{
    margin-top: 6px   
}
.mt-50px{
    margin-top: 50px !important;
}
.mr-5px{
    margin-right: 5px;
}
.zIndex-99{
    z-index: 99;
}
.zIndex-600{
    z-index: 600;
}
.zIndex-999{
    z-index: 999;
}
.top-80{
    top: 80px;
}
.mb-24{
    margin-bottom: 24px
}
.font-white-bold{
    color:#fff;font-weight: bold
}

.desire-navigation{
    position: absolute !important;
    top: 0px;
    left: 0;
    width: 100%;
    height: 85px;
    background: none;
    z-index: 59;
}

.desire-navigation .nav-left{
    position: absolute;
    top: 28px;
    left: 20px;
    width: 100%;
}

.desire-navigation .nav-left h2{
    font-weight: 700;
    color: #fff;
    letter-spacing: 1.3px;
    font-size: 34px;
}

.desire-navigation .nav-right-icon{
    position: absolute;
    top: 24px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,.2);
    border-radius: 50%
}

.desire-navigation .nav-right-icon .icon{
    width: 44px;
    height: 44px;
}

.h-20{
    height: 15px!important;
}

.font-size-14px{
    font-size: 14px;
}

.mt-0{
    margin-top: 0!important;
}

.premium-radius{
    border-radius: 10px;
}

.text-white{
    color: white !important;
}

.button.button--secundary.active{
    background: -moz-linear-gradient(95deg, rgba(255,98,165,1) 0%, rgba(255,98,165,1) 22%, rgba(255,137,97,1) 100%)!important; /* ff3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255,137,97,1)), color-stop(78%, rgba(255,98,165,1)), color-stop(100%, rgba(255,98,165,1)))!important; /* safari4+,chrome */
    background: -webkit-linear-gradient(95deg, rgba(255,98,165,1) 0%, rgba(255,98,165,1) 22%, rgba(255,137,97,1) 100%)!important; /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(95deg, rgba(255,98,165,1) 0%, rgba(255,98,165,1) 22%, rgba(255,137,97,1) 100%)!important; /* opera 11.10+ */
    background: -ms-linear-gradient(95deg, rgba(255,98,165,1) 0%, rgba(255,98,165,1) 22%, rgba(255,137,97,1) 100%)!important; /* ie10+ */
    background: linear-gradient(355deg, rgba(255,98,165,1) 0%, rgba(255,98,165,1) 22%, rgba(255,137,97,1) 100%)!important; /* w3c */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff8961', endColorstr='#ff62a5',GradientType=0 ); /* ie6-9 */
    color:#fff!important;    
}

.user-page-header{
    position: absolute !important;
    top: -80px;
    left: 0;
    width: 100%;
    height: 85px;
    border-bottom:1px solid #e3e3e3;
    background: #f8f8f8;
    z-index: 999    
}

.zIndexMax{
    z-index: 9999999 !important;
}
.zIndex99{
    z-index: 99;
}
.bg-none{
    background:none!important;
}

.gallery-fix{
    transform: translate3d(0px, 0px, 0px);
}
.border-radius-0{
    border-radius:0 !important
}
.bold{
    font-weight: bold !important;
}

.agething{
    z-index: 2;
    bottom: 5px;
    right: 10px;
    width: 37px;
    height: 16px; 
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
    margin-left: 10px;
    font-size: 12px;
}

.mt-20px{
    margin-top: 20px !important;
}
.mt-10px{
    margin-top: 10px !important;
}
.cityandcountry{
    padding-left: 2px;
    color: #aaa;
}

.btn-open-premium {
  position: relative;
  background: linear-gradient(-90deg, #ff62a5, #E73C7E, #f37d61, #ff797c, #fe62a4);
  background-size: 400% 100%;
  text-transform: uppercase;
  font-weight: 700;
  border: none;
  border-radius: 0.45em;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 0;
  margin: 0;
  animation: Gradient 4s ease infinite;
  text-decoration: none;
}

.btn-open-premium div {
  color: white;
  padding: 0.75em 1.618em;
  border-radius: inherit;
  background-size: inherit;
  background-image: inherit;
  animation: Gradient 4s ease infinite;
  position: relative;
  z-index: 1;
  mix-blend-mode: overlay;
  font-family: 'Inter';
  font-size: 14px;
  
}

@keyframes Gradient {
    50% {
        background-position: 140% 50%;
        transform: skew(-2deg);
    }
}

.btn-open-premium::after {
  content: '';
  position: absolute;
  background-size: inherit;
  background-image: inherit;
  animation: inherit;
  left: 0px;
  right: 0px;
  top: 2px;
  height: 100%;
  filter: blur(1rem);
}
.chat-message__text{
    border-radius: 17px!important;
}
.chat-message__text_{
    border-radius: 17px!important;
}
.zIndex-bg-white{
    z-index: 99;
    background: #fff;
}
.ml-40-top-35{
    margin-left: -40px;
    top: 35px
}
.width-30{
    width: 30px;
}
.width-60{
    width: 60px;
}
.mt--20{
    margin-top: -20px;
}
.bg-none{
    background: none!important;
}
.view-title{
    position: absolute;top: 48px;left: 20px;width: 100%;
}
.view-title-h2{
    font-weight: 700;color: #fff!important;letter-spacing: 1.3px;font-size: 34px;
}
.view-title-icon{
    position: absolute;top: 44px;right: 20px;width: 36px
}
.exploreNoResultText{
    text-align: center;margin-top: 140px
}
.exploreNoResultText-h1{
    font-size:34px;color:#fff
}
.exploreNoResultText-span{
    color:#fff!important;font-size: 16px
}
.exploreNoResultText-btn{
    margin-top: 25px;z-index: 99
}
.exploreRewardCard{
    text-align: center;padding-top: 50px;position:fixed;top:0;left:0;width:100%;z-index: 99;background: rgba(0,0,0,0.6)!important;
}
.exploreRewardCard-inter{
    padding-top: 310px;padding-right: 25px;padding-left: 25px
}
.exploreRewardCard-coin{
    z-index: 9;top: -225px;
}
.exploreRewardCard-span{
    color:#fff!important;font-size: 18px
}
.exploreResultOK{
    padding-bottom: 50px;background: none!important
}
.exploreResultOK-card{
    margin-top: 52px;
}
.exploreResultOK-shadow{
    position: absolute;bottom:-15px;left:0;z-index: 0;width: 94%;margin-left:3%;height: 100%;border-radius: 10px;background: rgba(255,255,255,.7)
}
.exploreResultOK-shadow2{
    position: absolute;bottom:-25px;left:0;z-index: 0;width: 88%;margin-left:6%;height: 100%;border-radius: 10px;background: rgba(255,255,255,.5)
}
.exploreResultOK-btn-like{
    left:80px;right:0;margin-left: auto;margin-right: auto;position:absolute;bottom: 70px;width:72px;height:72px;z-index: 9999;border-radius: 50%
}
.exploreResultOK-btn-nolike{
    left:-80px;right:0;margin-left: auto;margin-right: auto;position:absolute;bottom: 70px;width:72px;height:72px;z-index: 9999;border-radius: 50%
}
.exploreResultOK-btn-chat{
    left:220px;right:0;margin-left: auto;margin-right: auto;position:absolute;bottom: 80px;width:45px;height:45px;z-index: 9999;border-radius: 50%;background: #fff
}

.p-6{
    padding: 6px;
}

.ml-10{
    margin-left: 10px
}
.ml-5{
    margin-left: 5px
}
.mt-40{
    margin-top: 40px;
}
.pt-80{
    padding-top: 80px
}
.transform-0{
    transform: translate3d(0px, 0px, 0px);
}
.bg-fafafa{
    background-color:#fafafa;
}
.bg-51B80E{
    background:#51B80E
}
.bg-fff{
    background:#fff!important
}
.bg-333{
    background: #333
}
.fc-333{
    color: #333
}
.fc-999{
    color:#999
}
.fc-fafafa{
    color: #fafafa!important;
}
.fc-fff{
    color: #fff;
}
.fc-000{
    color: #000;
}
.fc-color-BFC5D5{
    color:#BFC5D5
}
.fc-f2f2f2{
    color:#f2f2f2;
}
.call-status-time{
    color:#faf8f8;padding:5px;font-size: 16px
}
.explore-mobile-ad{
    background: none;height: 7px;
}
.content-header-div{
    position: absolute !important;top: -80px;left: 0;width: 100%;height: 85px;border-bottom:1px solid #e3e3e3;background: #f8f8f8;z-index: 999
}
.content-header-div-title{
    position: absolute;top: 28px;left: 20px;width: 100%
}
.content-header-div-title h2{
    font-weight: 700;color: #333;letter-spacing: 1.3px;font-size: 34px;
}
.content-header-div-right{
    position: absolute;top: 36px;right: 15px;width: 110px;height: 30px;text-align: right;
}
.content-header-div-right span{
    font-size: 17px;line-height: 30px;color: #ff62a5;font-weight: 500
}
.list-thumb-user-photo{
    margin-top:10px;width:60px;height:60px;
}
.list-user-msg-time{
    display:inline-table;float:right;padding-right:10px
}
.list-user-last-msg{
    position:relative;width:100%;
}
.display-inline-table{
    display:inline-table;
}
.close-modal-boost{
    margin-left:7px;line-height:27px;
}
.modal-user-photo{
    width:120px;height:120px;
}
.o-p-div{
    height: 100%;margin-top: 50px;
}
.pt-5{
    padding-top: 5px!important;
}
.pb-45{
    padding-bottom: 45px;
}
.first-me-btn{
    background:#25BA25;border:#25BA25;
}
.mt-25{
    margin-top: 25px;
}
.mt-85{
    margin-top: 85px;
}
.mt-115{
    margin-top: 115px;
}
.ml-4{
    margin-left: 4px
}
.mt-25{
    margin-top:25px;
}
.content-header-meet{
   position: fixed !important;top: 0px;left: 0;width: 100%;height: 115px;border-bottom:1px solid #e3e3e3;background: #f8f8f8;z-index: 999
}
.content-header-meet-right{
    position: absolute;top: 24px;right: 20px;width: 36px
}
.meet-tabs-select{
    margin-top:38px;background: none;border: none!important;box-shadow: none
}
.meet-tabs{
    display: inline-table; margin-left: 10px;
}
.meet-tabs-live{
    display: inline-table; margin-left: 10px;border-bottom:1px solid #e3e3e3;
}
.inside-tab{
    font-weight: 500;font-size: 16px!important;
}
.tab.is-active::before{
    top: 32px!important;
}
.stories-tab{
    font-weight: 400;font-size: 19px!important;text-align: left!important;
}
.badge-tab{
    margin-left: 10px;color:#ff689a;background:#fff;position: absolute;top: 5px;padding: 1px 8px;right: 5px;
}
.meet-content{
    background:#fff;padding-bottom: 60px;margin-top:-10px;
}
.stories-page{
    margin-top: 135px;height: 120%;width: 100%
}
.stories-list{
    margin-bottom: 25px;margin-top: 120px;
}
.stories-list-feed{
    height: 104px;background: none;border-top:none;
}
.stories-my-story{
    border:2px solid rgba(255,98,165,1)
}
.stories-user-open{
    position: absolute;width: 1px;height: 1px;background: none
}
.stories-icon{
    position: absolute;top: 10px;left: 10px
}
.meet-icon-fan{
    position: absolute;top: 10px;left: 10px;z-index: 9;width: 25px;height: 25px
}
.meet-icon-nofan{
    position: absolute;top: 10px;left: 10px;z-index: 9;width: 25px;height: 25px;display: none
}
.meet-no-result{
    height: 100%;top: 10%
}
.meet-no-result h1{
    font-size:34px;color:#14171b
}
.meet-no-result span{
    color:#14171b
}
.meet-no-result-brick{
    width: 100px;height: 100px;margin-bottom: 25px;
}
.meet-no-result-brick .brick-img{
    height: 100%;border-radius:65px
}
.meet-no-result-btn{
    margin-top: 25px;pointer-events: auto!important
}
.content-header-messages{
   position: fixed !important;top: 0px;left: 0;width: 100%;height: 135px;border-bottom:1px solid #e3e3e3;background: #f8f8f8;z-index: 999 
}
.content-header-messages-title{
    position: absolute;top: 28px;left: 20px;width: 100%
}
.content-header-messages-title h2{
    font-weight: 700;color: #333;letter-spacing: 1.3px;font-size: 34px;
}
.chats-loader{
    position:absolute;top: 65px;width: 24px;height: 24px;right: 25px;
}
.meet-loader{
    top: 65px;width: 24px;height: 24px
}
.chats-search{
    margin-top: 80px;background: #e6e6e6;width:90%;margin-left:5%;border-radius: 10px;height: 40px;border:none
}
.chats-search i{
    font-size: 24px;
}
.chats-search input{
    font-size: 18px;
}
.chats-content{
    background:#fff;top:50px;
}
.page-container{
    z-index: 700;margin-top:0px;padding-bottom: 60px;
}
.chats-list{
    border:none;padding:0;margin-left: -15px
}
.chats-last-m-t{
    position:absolute;right:-40px;top:10px;
}
.spotlight-me-btn{
    background:#8A21EF;border:#2821EF
}
.modal-spotlight{
    position:absolute;top:160px;height: 200px
}

.content-header-main{
   position: fixed !important;top: 0px;left: 0;width: 100%;height: 85px;border-bottom:1px solid #e3e3e3;background: #f8f8f8;z-index: 999
}
.content-header-main-title{
    position: absolute;top: 28px;left: 20px;width: 100%
}
.content-header-main-title h2{
    font-weight: 700;color: #333;letter-spacing: 1.3px;font-size: 34px;
}
.content-header-main-right{
    position: absolute;top: 36px;right: 15px;width: 110px;height: 30px;text-align: right;
}
.content-header-main-right span{
    font-size: 17px;line-height: 30px;color: #ff62a5;font-weight: 500
}
.lives-content{
    position:fixed;width: 100%;height: 40px;left: 0;bottom:55px;text-align: center;
}
.lives-open-live{
    position:relative;width: 120px;background: #ff1439;margin: 0 auto;border-radius: 15px;padding:8px;padding-left:30px
}
.lives-open-live span{
    display:inline-table;color: #fff;font-weight: bold;
}
.lives-open-live svg{
    position:absolute;left: 8px;top: 2px;
}
.streams-content{
    height: 100vh;margin-top: 0px;background:#000
}
.current-stream-preview{
    position: fixed;top: 100px;left: 0;width: 100%;height: 80%;background: none;z-index: 1000!important;
}
.stream-reward-modal{
    border-radius: 10px;background:rgba(0, 0, 0, .4);
}
.stream-reward-modal-bottom{
    text-align: center;background: none!important;
}
.stream-reward-modal-icon{
    width:120px;height:120px;
}
.stream-comment-content{
    border-radius: 0;background: #fff;width: 100%!important;
}
.stream-msg-input{
    outline: none;width: 100%;padding-left: 15px
}
.stream-reward-modal-bottom-btn{
    color: #fff;font-size: 18px;padding: 10px
}
.stream-not-going-live-now{
    margin-top: 25px;width: 100%;text-align: center!important;font-size: 12px;
}
.current-stream-view{
    position: fixed;top: 100px;left: 0;width: 100%;height: 80%;background: none;z-index: 1001!important;display: none;
}
.fs-24{
    font-size: 24px
}
.btn-stream-notice{
    margin-left: 20px;color:#fff;background: rgba(0,0,0,.5)
}
.btn-stream-notice{
    margin-left: 20px;color:#fff;background: rgba(0,0,0,.5)
}
.btn-stream-notice span{
    padding-left: 20px;text-transform: none;
}
.line-loading1-a {animation:line-loading1-bounce 1.4s ease-in-out infinite;}
.line-loading1-b {animation:line-loading1-bounce 1.4s ease-in-out 200ms infinite;}
.line-loading1-c {animation:line-loading1-bounce 1.4s ease-in-out 400ms infinite;}
@keyframes line-loading1-bounce {
    0%{transform:translate3d(0, 4px, 0);}
    50%{transform:translate3d(0, -6px, 0);}
    100%{transform:translate3d(0, 4px, 0);}
}
.anim-d-1-4{
    animation-duration: 1.4s;
}
.top-120{
    top:120px;
}
.stream-in-private-msg-div{
    position: absolute;left: -40px;background: rgba(240, 52, 52, 0.5)
}
.pl-0{
    padding-left: 0px;
}
.streamer-avatar-div{
    width: 50px;height: 50px;border: 2px solid #ff3f72
}
.streamer-avatar-div img{
    border: 2px solid #fff;border-radius: 50%
}

.stream-story-view-msg{
    width: 30px;background: #ff3f72
}
.streamer-name{
    padding-bottom: 15px;font-size:1rem;letter-spacing: 0.5px;font-weight:600
}
.stream-data-icon1{
    position: absolute;top: 50px
}
.stream-data-icon1 .icon{
    width: 15px;height: 15px
}
.stream-data-icon1 .icon svg{
    width:100%;height:100%
}
.stream-data-viewers{
    position: absolute;top: 48px;font-size:0.8rem;margin-left: 17px!important
}
.stream-data-icon2{
    position: absolute;top: 50px;margin-left: 40px;
}
.stream-data-icon2 .icon{
    width: 15px;height: 15px
}
.stream-data-icon2 .icon svg{
    width:100%;height:100%
}

.stream-data-time{
    position: absolute;top: 48px;font-size:0.8rem;margin-left: 100px;
}
.stream-data-end-stream{
    position: absolute;top: 30px;right:20px;width: 80px;font-size:0.8rem;border-radius: 5px;background: rgba(0, 0, 0, .45);
}
.stream-data-close{
    position: absolute;top: 30px;right:20px;width: 30px;height: 30px;border-radius: 50%;background: rgba(0, 0, 0, .45);border-radius: 50px;background: rgba(0, 0, 0, .45);vertical-align: center;text-align: center;display: none
}
.stream-data-close svg{
    margin-left: 3px;margin-top: 3px;
}
.stream-msg-text-input{
    outline: none;width: 100%;
}
.mt-3{
    margin-top: 3px;
}
.stream-gifts-btn{
    position:absolute;right: 20px;top: 0px;height: 50px;width: 50px;border-radius: 50px;background: rgba(225,225,225,.15);padding: 4px;   vertical-align: middle;text-align: center;
}
.stream-gifts-div{
    bottom: 120px;background: none;border:none;z-index:3;padding-left: 25px;padding-right: 15px;
}
.stream-gift-img{
    width:70px;margin-right:5px;
}
.close-gift-modal{
    margin-left:7px;line-height:27px;color: #333;
}
.font-w-700{
    font-weight: 700;
}
.bottom-80{
    bottom: 80px
}
.border-radius-10{
    border-radius: 10px;
}
.font-s-12{
    font-size: 12px
}
.btn-add-to-stop{
    background:#fff;color:#333;font-size: 16px
}
.changeloc-modal{
    background: none;pointer-events: auto!important;
}
.changeloc-modal-inner{
    margin-top: 0px;pointer-events: auto!important;    
}

.fs-20{
    font-size: 20px;
}
.border-color-fff{
    border-color:#fff !important
}
.item-list-desire{
    background:#fff;border-color:#fff;height: 50px;
}
.text-center{
    text-align:center!important;
}
.bulbs-called{
    width: 100%;text-align: center;
}

.desire-bulb-1{
    background:#F03D26;border:1px solid #F03D26
}
.desire-bulb-1 i{
    margin-left:10px;color:#fff;left:8px
}
.desire-bulb-2{
    margin-left: 25px;background:#4FCA31;border:1px solid #4FCA31
}
.desire-bulb-2 i{
    margin-left:3px;color:#fff;
}
.bulb-end{
    border:none;margin-left: 0;
}
.overflow-y-scroll{
    overflow-y: scroll !important
}
.fs-15rem{
    font-size: 1.5rem
}
.payout-input{
    background: #fafafa;border-radius: 8px;padding: 10px;width: 100%;height: 80px;margin-bottom: 10px
}
.withdrawOverlay{
    position: fixed;top: 0;left: 0;width: 100%;height: 100%;background: rgba(0,0,0,0.4);z-index: 9
}
.margin-10{
    margin: 10px;
}
.w-wallet-header{
    width: 100%;margin-left: 0;
}
.w-wallet-balance{
    margin-top:10px;letter-spacing: 0px;color: #fff
}
.w-wallet-c{
    height: 250px;position: relative;margin-left: 0;width: 100%;top:0
}
.mr-0{
    margin-right: 0;
}
.payouts-list-title{
    font-size: 20px;color: #000;font-weight: bold
}
.payouts-list{
    text-align:left;height:60px!important
}
.payout-info{
    text-align: left;color:#333;font-size: 14px;
}
.loader-bg-fafafa{
    background: #fafafa!important
}
.top-45p{
    top: 45%
}
.slide-img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.slide-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;   
    background-image: linear-gradient(
        rgba(0, 0, 0, 0.0) 0%,
        rgba(0, 0, 0, 0.0) 40%,
        rgba(0, 0, 0, 0.2) 70%,
        rgba(0, 0, 0, 0.3) 80%,
        rgba(0, 0, 0, 0.4) 90%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 2;
    pointer-events: none;
}
.slider-skip{
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 100px;
    height: 20px;   
    z-index: 5;
    text-align: right;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
}    
.slider-pager{
    bottom: 40px;
}
.slider-pager .slider-pager-page .icon.ion-record{
    font-size: 8px;
    color: #888;
}
.slider-pager .slider-pager-page.active .icon.ion-record{
    font-size: 16px !important;
    color: #fff !important;
}
.slider-text-container{
    position: absolute;
    bottom: -75vh;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 3;
}
.slider-text-header{
    color: #fff !important;
    font-size: 36px;
    font-weight: bold;
}
.slider-text-small{
    font-size: 16px;
    color: #9fa0a5 !important;
    padding-right: 15px;
    padding-left: 15px;
}
.bg-000{
    background: #000;
}
.desire-landing{
    top:-120px;background-size:cover;left:-80px;
}
.pt-16vh{
    padding-top: 16vh!important
}
.desire-landing-text{
    font-size: 18px;
    margin-top: 25px !important;
    margin-bottom: 45px !important;
    padding: 25px;
    color:#000!important
}
.desire-landing-input{
    border:none;
    padding-left:5px !important;
}
.desire-landing-input .input-text{
    border-radius: 8px !important;
    padding-left: 15px !important;
    height:46px !important;
    font-size: 15px!important;
    position: inherit !important
}
.mb-40{
    margin-bottom: 40px;
}
.pr-20{
    padding-right: 20px;
}
.desire-landing-btn{
    font-weight: bold;font-size: 16px;
}

::-webkit-input-placeholder { /* Edge */
    color: #454545 !important;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #454545 !important;
}
::placeholder {
    color: #454545 !important;
}

.desire-chat-back{
    position: absolute;left: 0;top: 60px;width: 100px;height: 50vh;background: none;z-index: 9
}

.desire-chat-page{
    z-index: 1000;background: rgba(0,05,05,.6);
}
.chat-i-txt{
    margin-bottom: 20px;width: 95%;background: none;padding-left: 15px;
}
.top-45px{
    top: 45px;
}
.desire-chat-content{
    background:#fff;padding-bottom:20px;border-top:2px solid #eee;padding-top: 100px
}
.mt-150{
    margin-top: 150px;
}
.desire-chat-img{
    width: 220px;border-radius: 5px;margin-right: 5px;
}
.desire-chat-gif{
    width: 140px;border-radius: 5px;margin-right: 5px;
}
.desire-chat-story-img{
    width: 180px;border-radius: 5px;margin-right: 5px;
}
.desire-chat-story-video{
    width: 180px;border-radius: 5px;margin-right: 5px;
}
.msg-from-story{
    color: #333;font-size: 12px
}
.close-gift-chat{
    margin-left:7px;line-height:27px;color:#222
}
.chat-limit{
    background:#fff;padding-top:15px;margin-top:45px
}
.fc-BFC5D5{
    color:#BFC5D5
}
.btn-chat-limit{
    background:#275BDF;border:#025BDF
}
.chat-premium{
    height: 100%;background: #fff
}
.chat-premium-content{
    background:#fff;padding-top:15px;
}
.location-content{
    background:#fff;margin-top: -45px;
}
.location-content-inner{
    margin-top: 0px;pointer-events: auto!important;
}
.mr-20px{
    margin-right: 20px;
}
.mt--8px{
    margin-top: -8px;
}
.ml--10px{
   margin-left: -10px; 
}
.desire-register-header{
    position: fixed !important;top: 0px;left: 0;width: 100%;height: 85px;background: none;z-index: 999
}
.mt--30px{
    margin-top: -30px;
}
.register-photo{
    width: 160px;height: 160px;background: #fff;bottom: 50px;border-color:none
}
#photp-upload{
    border-color:none;background-color:#fafafa;
}
.mt-80px{
    margin-top: 80px
}
.register-desire-input{
    background: #fafafa;border-radius: 8px;
    padding-left: 10px!important;
}
.desire-username-preview{
    position:relative;min-height:25px;height:auto;text-align: left !important;
}
.text-left{
    text-align: left !important;
}
.bg-FF661B{
    background: #FF661B!important
}
.pt-10p{
    padding-top:10%
}
.pt-10px{
    padding-top:10px
}
.desire-register-page3-text{
    font-size:18px !important;
    margin-left:20px !important;
    margin-right:10% !important;
    padding-bottom:20px !important;
}
.desire-register-page3-p{
    margin-left:20px !important;
    font-size:16px !!important;
}
.desire-register-date{
    width:50%;display:inline-block;margin-left:20px;
}
.desire-register-page3-gender{
    position:relative;width:90%;margin-left:20px;padding-bottom:15px;
}
.ml-20px{
    margin-left: 20px;
}
.register-span{
    font-size: 16px !important;
    line-height: 16px !important;
}