@import url("modules/selfies_modal.css");

.profile-rank {
    color: var(--pink);
    text-shadow: var(--pink-glow);
    letter-spacing: 1.5px;
    text-align: center;
	margin-top:1rem;
}

.profile-gallery-pc {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1rem;
}

img.profile-gallery-pc-img {
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: var(--radius);
}

.profile-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.profile-app-ico-wrap {
    display: flex;
    justify-content: space-between;
    column-gap: 2rem;
}

.profile-app-ico-wrap img {
    width: 1.25rem;
}

.profile-phone {
    display: flex;
    align-items: center;
    column-gap: .5rem;
}

.profile-phone img {
    width: 1.25rem;
    height: 1.25rem;
}

.profile-phone a {
    font-size: 1.2rem;
    font-weight: 100;
    font-style: italic;
}

.profile-stats-grid {
	display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 4rem;
	row-gap:1rem;
	position: relative;
}

.profile-stats-item-title {
	text-align:right;
}

.profile-stats-item-value {
	text-align:left;
}

.profile-stats-item-value.flex {
	display:flex;
	/* align-items:center; */
	column-gap:1rem;
}

.profile-stats-mid-bar {
	position: absolute;
	border-left:1px solid var(--pink);
	left: 50%;
	transform: translateX(-50%);
	width: 1px;
	height: 100%;
	top: 0;
	opacity: 0.2;
}

.profile-box-wrap {
	position: relative;
    background: var(--transp-black);
    border-radius: var(--radius);
    padding: 2rem 3rem;
    font-size: .9rem;
}

.profile-box-title {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    top: -1rem;
    text-align: center;
    background: var(--pink);
    text-transform: uppercase;
    font-weight: 400;
    padding: .2rem 3rem;
    border-radius: var(--radius);
    font-size: .8rem;
    min-width: 14rem;
}

.profile-box-title .material-icons.heart {
    position: absolute;
    right: -1.25rem;
    background: none;
    top: -0.75rem;
    transform: rotate(15deg);
    color: var(--pink);
}

.profile-box-text {
	white-space: pre-line;
}

.profile-box-text img {
	width: 100%;
	border-radius: 1rem;
}

.profile-box-text p:empty {
	display:none;
}

.video-wrap video {
	width: 100%;
	border-radius: var(--radius);
}

/* Reviews */
.review-single {
	border: 1px solid var(--transp-white);
    padding: 1rem 2rem;
    border-radius: var(--radius);
}

.review-credits {
	font-size: .8rem;
    opacity: .5;
    margin-bottom: 0;
}

/* Gallery */

@media (min-width: 767.98px) {
    .profileGalleryMob {
        display: none;
    }
}
@media (max-width: 767.98px) {
    .profile-gallery-pc {
        display: none;
    }
}

.profile-x-link {
    display: flex;
    justify-content: center;
    font-weight: 300;
}

.profile-x-link img {
    width: 1.25rem;
    margin-left:.4rem;
}

/* Country Selector Design Adjustments */
#country-selector {
    width: 100%;
}

.select2-container .select2-results__option img {
    width: 20px;
    height: 15px;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    vertical-align: middle;
}
.select2-container .select2-selection__rendered img {
    width: 20px;
    height: 15px;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.select2-container--default .select2-selection--single .select2-selection__rendered, 
.select2-container--default .select2-results>.select2-results__options,
.select2-container--default .select2-search--dropdown .select2-search__field,
.select2-search--dropdown,
.select2-dropdown,
.select2-container--default .select2-selection--single {
    background: #1C0921;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background: #060608;
}

.select2-container--default .select2-results__option--selected {
    background: #060608;
    color: var(--pink);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: white;
    line-height: 38px;
    border-radius: 1rem;
}

.select2-container .select2-selection--single {
    height: 40px;
}

.select2-container--default .select2-selection--single {
    box-shadow: none !important;
    appearance: none;
    --webkit-appearance: none;
    outline: none;
    border: 1px solid #ffffff26;
    border-radius: 1rem;
}


.select2-container--default .select2-search--dropdown .select2-search__field {
    color: white;
    border: 1px solid #ffffff26;
}

.select2-dropdown {
    border: 1px solid #ffffff26;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 36px;
}

.nationality-text {
    font-size: 1rem;
    position: absolute;
    margin-left: .5rem;
    color: var(--bs-gray);
}

img.review-author-flag {
    height: .8rem;
    width: 1rem;
    padding-bottom: .15rem;
    margin: 0 .3rem;
}

.review-notice {
    display: flex;
    justify-content: center;
    text-align: center;
    color: white;
    font-size: .7rem;
    margin-top: 1rem;
    width: 100%;
}

.grecaptcha-badge { visibility: hidden; }