/* font-faimly  */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/*global start*/
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;

}

:root {
    --theme-clr: #EF4868;
    --black: #1E1E26;
    --white: #ffffff;
}

body {
    font-family: "Inter", sans-serif;
}

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    display: inline-block;
    color: inherit;
}

a:hover {
    color: inherit;
}

p {
    color: #fff;
}

img,
video {
    max-width: 100%;
}

span {
    display: inline-block;
}

summary {
    list-style-type: none;
}

figure {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    /*display: none;
-webkit-appearance: none;*/
}

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

input[type="date"] {
    appearance: none !important;
    -webkit-appearance: none !important;
    background-image: url('https://wordpress-1180784-5480452.cloudwaysapps.com/wp-content/themes/goliathsports-child/assets/images/calendar_month.svg') !important;
    background-repeat: no-repeat !important;
    background-position: center right 13px !important;
    background-size: 15px !important;
}

.container {
    width: 100%;
    max-width: 1255px;
    margin: 0 auto;
    padding: 0 15px;
}

.grid {
    display: grid;
}

.grid-cols-2 {
    grid-template-columns: 1fr 1fr;
}

.grid-cols-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.grid-cols-5 {
    grid-template-columns: repeat(5, 1fr);
}

.grid-cols-6 {
    grid-template-columns: repeat(6, 1fr);
}

.item {
    width: 100%;
}

.grid-span-2 {
    grid-column: span 2;
}

.gap_24 {
    gap: 24px;
}

.mobile-menu {
    display: none;
}

#main {
    border-width: 0 1px;
    position: relative;
    margin: 0 auto;
}

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

.banner-content .secondary-btn:hover {
    background: #000;
}

.primary-btn:hover {
    background: #ef4868;
    box-shadow: 0 4px 10px rgb(255 255 255 / 40%);
    transform: translateY(-2px);
}

/* site btns */
.primary-btn {
    padding: 12px 20px;
    color: #fff;
    background: var(--theme-clr);
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    transition: all 0.2s linear;
    border: 0;
    position: relative;
    isolation: isolate;
    text-align: center;
}

.primary-btn:hover {
    color: #fff;
}

.primary-btn::before {
    content: "";
    position: absolute;
    inset: 2px;
    transform-origin: center;
    background: var(--green);
    border-radius: inherit;
    z-index: -1;
    transform: scale(0);
    transition: all 0.2s linear;
}

.primary-btn:hover::before {
    transform: scale(1);
}

.secondary-btn {
    color: var(--theme-clr);
    position: relative;
    transition: all 0.2s linear;
    font-size: 17px;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
    background: #fff;
    padding: 12px 20px;
    border: 0;
}

.secondary-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    transform-origin: center;
    background: var(--light-green);
    border-radius: inherit;
    z-index: -1;
    transform: scale(0);
    transition: all 0.2s linear;
}

.secondary-btn:hover::before {
    transform: scale(1);
}

/* site btns  */
/*header start*/
.header-top {
    background: var(--green);
    padding: 28px 15px;
}

.header-top p {
    margin: 0;
    text-align: center;
    font-size: 16px;
    color: #fff;
}

.site-header {
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 99;
}

.site-header .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px;
}

.site-logo img {
    max-width: 210px;
}

.site-nav {
    margin-left: auto;
    margin-right: 20px;
}

.site-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
}

.site-nav li {
    position: relative;
}

.site-nav li a {
    color: #fff;
    position: relative;
    transition: all 0.2s linear;
    font-size: 17px;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
}

.site-nav li a:hover,
.site-nav li a.active {
    color: #fff;
}

.site-nav li a.secondary-btn {
    padding: 18px 45px;
    color: #000;
}

.site-nav li ul.submenu {
    display: block;
    position: absolute;
    width: max-content;
    padding: 20px 10px;
    background: #FFF;
    border-radius: 12px;
    box-shadow: 0 0 10px 10px rgba(0 0 0 / 10%);
    border: 1px solid #ddd;
    top: calc(100% + 60px);
    left: 0;
    transition: all 0.2s linear;
    opacity: 0;
    visibility: hidden;
}

.site-nav li:hover ul.submenu {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.site-nav li ul.submenu a {
    display: block;
    border-radius: 8px;
    padding: 10px;
}

.site-nav li ul.submenu a:hover {
    background: rgba(0 0 0 /10%);
}

.site-nav li ul.submenu a i {
    color: var(--green);
}

.page-template-athlete-profile .menu-toggle {
    display: none;
}

/* .secondary-btn.custom_register.login_u {
    margin-left: auto;
    margin-right: 20px;
}

.secondary-btn.login_u {
    margin-left: 0;
    margin-right: 20px;
} */

.menu-toggle {
    display: none;
}

.menu-toggle .bar-1,
.bar-2,
.bar-3 {
    width: 40px;
    height: 2px;
    background-color: #fff;
    margin: 8px 0;
    transition: all 0.3s linear;
    display: block;
}

.mobile-toggle .bar-2 {
    opacity: 0;
}

.mobile-toggle .bar-1 {
    transform: rotate(45deg) translateY(14px);
}

.mobile-toggle .bar-3 {
    transform: rotate(-45deg) translateY(-15px);
}

.closed-menu {
    display: none;
}

.site-nav .closed-menu a {
    font: inherit;
    color: inherit;
}

/*header end*/
.section-title {
    color: #fff;
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 24px;
    text-align: center;
}

.section-title span {
    color: var(--theme-clr);
    display: block;
    margin: 0 0 12px;
}

span.highlight {
    color: var(--orange);
}

.sub-title {
    color: #fff;
    font-family: Helvetica;
    font-size: 32px;
    font-weight: 300;
    line-height: 140%;
    max-width: 1020px;
    margin: 0;
}

.section-desc {
    color: #CDCDCD;
    font-size: 24px;
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

/* site banner start  */
.site-banner {
    padding: 200px 0;
    background: var(--theme-clr);
}

.banner-content p {
    font-size: 48px;
    line-height: 1;
    color: #fff;
    font-weight: 600;
    margin: 0;
}

.features ul {
    list-style-image: url('https://wordpress-1180784-5480452.cloudwaysapps.com/wp-content/uploads/2025/05/asterisk.png');
}

.banner-content h1 {
    font-size: 64px;
    font-weight: 600;
    color: #fff;
    margin: 24px 0;
}

/* site banner end  */

/* start-journey start  */
.start-journey {
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(335deg, #0c0c1f 30%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.start-jouney-bg {
    position: absolute;
    inset: 0;
}

.start-jouney-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: fixed;
    top: 0;
    left: 0;
    transform: translateZ(0);
    will-change: transform;
}

.start-journey .grid {
    grid-template-columns: 1fr 1.5fr;
    align-items: center;
    position: relative;
}

.start-jouney-content h4 {
    font-size: 48px;
    color: #fff;
    font-weight: 600;
    margin: 0 0 20px;
}

.start-jouney-content p {
    font-size: 24px;
    color: #fff;
    font-weight: 500;
}

.start-journey-img {
    width: calc(100% + 200px);
    margin-top: -100px;
    margin-left: -100px;
}

/* start-journey end  */

/* building-sec start  */
.building-sec {
    background: var(--black);
    padding: 80px 0;
}

.building-warp .grid {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 24px;
}

.building-warp {
    margin-top: 48px;
}

.building-card {
    background: #2D2A31;
    padding: 20px;
    height: 100%;
}

.icon {
    background: rgb(239 72 104 / 30%);
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.building-card h4 {
    color: #fff;
    text-align: center;
    font-weight: 600;
    width: 100%;
    margin: 20px auto 20px;
    line-height: 1.5;
}

.building-card h4 span {
    display: block;
}

.building-card p {
    color: #CDCDCD;
    text-align: center;
    font-size: 18px;
    line-height: 24px;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
}

.bottom-btn {
    margin-top: 48px;
    text-align: center;
}

/* building-sec end  */
/* your-path start  */
.your-path {
    padding: 100px 0 80px;
    background: var(--theme-clr);
    position: relative;
    isolation: isolate;
}

.bg-shape {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.bg-shape img {
    height: 100%;
    object-fit: cover;
}

.your-path .section-title span {
    color: var(--black);
}

.your-path .section-desc {
    color: #fff;
}

.your-path-wrap {
    margin-top: 48px;
}

.tab-content-wrap {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    background: #fff;
    padding: 48px;
    border-radius: 6px;
    grid-gap: 48px;
}

.nav-tabs {
    justify-content: center;
    gap: 24px;
    border: 0;
}

.nav-tabs .nav-item .nav-link {
    padding: 15px 30px;
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    background: var(--black);
    border: 0;
    margin: 0;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    min-width: 194px;
}

.pricing-section {
    border-right: 1px solid #000;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.pricing-section-content {
    padding-right: 60px;
}

.pricing-section-content hr {
    border-color: #000;
    opacity: 1;
    width: calc(100% + 60px);
}

.pricing-section-content h2 {
    color: var(--black);
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    margin: 0 0 10px;
}

.pricing-section-content .installments {
    font-size: 20px;
    color: var(--theme-clr);
}

.pricing-section-content .description {
    font-size: 18px;
    line-height: 1.5;
    color: var(--black);
}

.features ul {
    padding-left: 35px;
}

.features li {
    position: relative;
}

.features li:not(:last-child) {
    margin-bottom: 24px;
}

.features li .star {
    width: 24px;
    text-align: center;
    position: absolute;
    left: -35px;
    top: 0;
}

.features li h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
}

.features li p {
    margin: 0;
    font-size: 20px;
    line-height: 1.2;
}

.comming-soon-btn {
    grid-column: 1/-1;
    width: 100%;
    border: 2px solid var(--theme-clr);
    color: var(--theme-clr);
    padding: 8px 20px;
    font-size: 24px;
    line-height: 1;
    text-align: center;
    transition: all 0.2s linear;
}

/* your-path end */
/* site footer start  */
.site-footer {
    background: var(--theme-clr);
}

.footer-content {
    padding: 100px 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1.5fr;
}

.footer-top h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px;
}

.site-footer .footer-news-letter h4 {
    font-size: 28px;
    font-weight: 600;
}

.footer-news-letter p {
    font-size: 16px;
    color: #F4F4F4;
    font-weight: 300;
    margin: 0;
}

.footer-news-letter .form {
    background: #fff;
    width: 100%;
    max-width: 400px;
    padding: 12px;
    margin-top: 40px;
}

.footer-news-letter .form form {
    display: flex;
    justify-content: space-between;
}

.footer-news-letter .form form input {
    flex-grow: 1;
    padding: 8px 15px;
    font-size: 14px;
    color: #A0A0A0;
    border: 0;
}

.footer-news-letter .form form input::placeholder {
    color: inherit;
    font: inherit;
}

.footer-news-letter .form form input:focus {
    outline: 0;
}

.footer-links a,
.footer-contact a {
    font-size: 15.5px;
    color: #F5F5F5;
    line-height: 167.1%;
    display: inline-flex;
    gap: 5px;
    font-weight: 300;
}

.footer-contact a span {
    font-weight: 400;
}

.footer-logo {
    text-align: right;
    margin-top: 48px;
}

.footer-logo img {
    width: 100%;
    max-width: 210px;
}

.footer-contact p {
    color: #f5f5f5;
    font-weight: 300;
}

.footer-bottom {
    padding: 24px 0;
    background: var(--black);
}

.footer-bottom p {
    margin: 0;
    color: #fff;
    font-size: 16px;
}

.sidebar-profile a span img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}


.trusted .grid {
    display: block;
    width: 100%;
}

.trusted .building-card {
    padding: 36px 24px;
    margin: 0 12px;
}

.trusted .icon {
    background: transparent;
    width: 100%;
    height: auto;
    gap: 12px;
    margin-bottom: 24px;
}

.trusted .icon i {
    color: #EF4868;
    font-size: 17px;
}

.name {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-style: solid;
    border-color: #ffffff;
    border-width: 1px 0px 0px 0px;
    padding: 24px 10px 0px 10px;
    max-width: 254px;
    margin: 24px auto 0;
}


.name span {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border-style: solid;
    border-color: #ef4868;
    border-width: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#testmonial .slick-slide img {
    display: block;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.name h3 {
    padding-top: 12px;
    color: #cdcdcd;
    text-align: center;
    font-size: 18px;
    line-height: 24px;
    font-weight: 800;
}

.name p {
    color: var(--theme-clr);
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
}

.name .committed {
    color: #cdcdcd;
    text-align: center;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    font-style: italic;
}

.nav-tabs .nav-item .nav-link.active {
    background: #fff;
    color: var(--theme-clr);
}

.start-jouney-content {
    padding: 30px 0;
    position: relative;
}




/*dashboard*/
.sidebar {
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 5;
    overflow: auto;
    transition: all .5s linear;
    background: #2d2a31;
    padding: 24px;
    width: 288px;
}

.overview {
    margin-left: 288px;
    width: calc(100% - 288px);
}

.sidebar .site-logo img {
    max-width: 157px;
}

.sidebar .page-links {
    margin: 48px 0 24px;
}

.sidebar .page-links ul li a {
    color: #ffffff;
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    position: relative;
    padding: 8px;
    display: block;
}

.sidebar .page-links ul li a img {
    margin-right: 12px;
}

.sidebar .page-links ul li .active {
    background: var(--theme-clr);
}

.sidebar .page-links ul li {
    margin-bottom: 4px;
}

.sidebar .page-links ul li:last-child {
    margin-bottom: 0;
}

.page-links.sign-out {
    margin: 0;
    border-style: solid;
    border-color: rgb(255 255 255 / 25%);
    border-width: 1px 0 0 0;
    padding-top: 24px;
}

.sidebar-profile {
    border-style: solid;
    border-color: rgb(255 255 255 / 25%);
    border-width: 1px 0 0 0;
    padding-top: 24px;
    margin-top: 24px;
}

.sidebar-profile a span {
    border-radius: 50%;
    border-style: solid;
    border-color: #ef4868;
    border-width: 2px;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    margin-right: 16px;
    overflow: hidden;
}

.sidebar-profile a {
    color: var(--white);
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.dashboard-header {
    background: #a53950;
    position: relative;
    padding: 24px 24px 0;
}

.alora-flex {
    display: grid;
    grid-template-columns: 160px 1fr;
    align-items: end;
}

.alora-text {
    padding-left: 8px;
    position: relative;
    margin-left: -40px;
}

.alora-text.profile_name_cl {
    margin: 0;
}

.alora-text h2 {
    color: #ffffff;
    font-size: 36px;
    font-weight: 800;
}

.location-bar {
    margin-top: 15px;
    border-bottom: 1px solid rgb(255 255 255 / 24%);
    padding-bottom: 24px;
}

.location-bar ul {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.location-bar ul a {
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 12px;
}

.location-bar a img {
    max-width: 20px;
}

.dashboard-header:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(175, 59, 84, 1) 50%, rgba(30, 30, 38, 1) 100%);
    width: 100%;
    height: 100%;
    z-index: 0;
}

.content-header {
    position: relative;
}

.alora-img {
    border-radius: 50%;
    border-style: solid;
    border-color: #ef4868;
    border-width: 6px;
    width: 150px;
    height: 150px;
    position: relative;
    overflow: hidden;
}

.alora-img img {
    width: 100%;
    height: 100%;
}

.alora-img a {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #3d3a4078;
    display: block;
    width: 100%;
    color: #fff;
    text-align: center;
    font-size: 10px;
    font-weight: 500;
    padding: 4px;
    text-decoration: underline;
}

.dashboard-tabs {
    background: #1e1e26;
    padding: 24px;
    min-height: 100vh;
}

.dashboard-tabs .nav-item button.active {
    background: #ef4868;
}

.dashboard-tabs .nav-item button {
    padding: 8px 17px;
    color: #ffffff;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    border-radius: 0;
}

.dashboard-tabs .nav-item {
    margin-right: 24px;
}

.dashboard-tabs .nav-item:last-child {
    margin-right: 0;
}


.upload-box input[type="file"] {
    display: none;
}

.upload-label {
    color: #ef4868;
    text-align: center;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    text-decoration: underline;
    cursor: pointer;
    padding-right: 4px;
}

.note {
    margin-top: 14px;
    color: var(--gray-400, #9ca3af);
    text-align: center;
    font-family: "Inter-Regular", sans-serif;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
}




.heading-bar {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
}

.para {
    margin: 0;
    color: #9ca3af;
    text-align: left;
    font-size: 12px;
    line-height: 24px;
    font-weight: 400;
}

.personal-main {
    padding: 24px;
}

.label-bar {
    color: #ffffff;
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    margin-bottom: 12px;
    display: block;
}

.upload-main {
    margin-top: 24px;
}

.upload-box {
    border-radius: 8px;
    border-style: dashed;
    border-color: var(--white-25, rgba(255, 255, 255, 0.25));
    border-width: 1px;
    padding: 20px 0px 12px 0px;
    text-align: center;
}

.upload-icon img {
    height: 450px;
    object-fit: cover;
}


.form-bar {
    margin-bottom: 12px;
    gap: 24px;
}

.name-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 150px;
}

.form-field input {
    background: var(--white-5, rgba(255, 255, 255, 0.05));
    border-radius: 6px;
    align-self: stretch;
    flex-shrink: 0;
    min-height: 36px;
    position: relative;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05),
        inset 0px 0px 0px 1px rgba(255, 255, 255, 0.1),
        inset 0px 0px 0px 0px rgba(255, 255, 255, 1);
    border: 0;
    width: 100%;
    padding: 5px 10px;
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
}

.form-field select {
    background: var(--white-5, rgba(255, 255, 255, 0.05));
    border-radius: 6px;
    align-self: stretch;
    flex-shrink: 0;
    min-height: 36px;
    position: relative;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05), inset 0px 0px 0px 1px rgba(255, 255, 255, 0.1), inset 0px 0px 0px 0px rgba(255, 255, 255, 1);
    border: 0;
    width: 100%;
    padding: 5px 10px;
    color: #fff;
    appearance: none;
    background-image: url("../images/arrow-bar.svg");
    background-repeat: no-repeat;
    background-position: center right 10px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
}

.form-field select option {
    color: #ef4868;
}

.date-of {
    /* display: grid;
grid-template-columns: 1fr 219px 150px; */
    position: relative;
    margin-bottom: 48px;
}

.dob-group {
    display: grid;
    grid-template-columns: 3.5fr 1fr 1.8fr;
    gap: 24px;
}

.date-of:before {
    content: "";
    position: absolute;
    bottom: -24px;
    left: 0;
    background: #57575d;
    height: 1px;
    width: 100%;
    max-width: 100%;
}

.date-of .form-field:last-child {
    max-width: 586px;
}

.label-bar sub {
    color: #ef4868;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    position: relative;
    top: 1px;
}

.form-field input:focus {
    outline: none;
    box-shadow: 0 0 0px 1px var(--theme-clr);
}


.form-field select:focus {
    outline: none;
    box-shadow: 0 0 0px 1px var(--theme-clr);
}

/* .fade:not(.show) {
opacity: 0;
display: none;
} */


.form-control:focus {
    border-color: var(--theme-clr) !important;
    box-shadow: none;
}

.form-field select:focus {
    outline: none;
}

.date-of .form-field:nth-child(2) {
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.25);
    border-width: 0px 1px 0px 1px;
    padding: 0 24px;
}

.date-of .form-field:nth-child(3) {
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.25);
    border-width: 0px 1px 0px 1px;
    padding: 0 24px;
    border-left: none;
}

.personal_events_fields {
    margin-bottom: 20px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 6px;
    display: grid;
    grid-template-columns: 20px 1fr;
    grid-gap: 24px;
}

.event_data_dtl {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 24px;
}

.personal_events_fields .form-field:last-of-type {
    grid-column: span 2;
    max-width: 100%;
}

.form-field input::placeholder {
    color: #fff;
    font-size: 13px;
}

.username {
    padding-top: 12px;
}

.public {
    display: grid;
    grid-template-columns: 1fr auto;
    border-radius: 6px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.25);
    border-width: 1px;
    padding: 24px;
    align-items: end;
}


.public .primary-btn {
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    padding: 6px 12px;
    min-height: 36px;
}

.athlete {
    display: grid;
    grid-template-columns: 1fr 149px 1fr;
}

.radio-group {
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.25);
    border-width: 1px;
    padding: 8px 24px 8px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.subtext {
    color: #9ca3af;
    font-size: 12px;
    line-height: 12px;
    font-weight: 500;
}

.subtext .label-bar {
    margin: 0;
}

.radio-options input {
    width: 16px;
    height: 16px;
    accent-color: #ef4868;
}

.radio-options label {
    color: #ffffff;
    text-align: left;
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 11px;
}

.radio-options {
    display: flex;
    gap: 15px;
}

.athlete-home.grid-cols-2 {
    grid-template-columns: 2fr 1fr;
}

.athlete-home .form-field:last-child {
    max-width: 200px;
}

.city-state {
    grid-template-columns: 1fr 220px 150px 1fr;
}

.preferred .radio-group {
    display: grid;
    grid-template-columns: 1fr 2fr;
    max-width: 653px;
    margin: 0px auto 0;
}

.preferred {
    padding-top: 12px;
}

.line {
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.25);
    border-width: 1px 0 0 0;
    display: block;
    margin: 24px 0;
}

.heading-bar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.heading-bar-flex .primary-btn {
    padding: 10px 12px;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
}

.heading-bar-flex .primary-btn i {
    padding-right: 10px;
    font-size: 20px;
}

.social-entry {
    border-radius: 6px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.25);
    border-width: 1px;
    padding: 24px;
    display: grid;
    grid-template-columns: 160px 1fr 160px;
    gap: 24px;
    align-items: end;
    margin-bottom: 12px;
}

.checkbox-field {
    display: flex;
    align-items: center;
}

.checkbox-field label {
    margin: 0;
    padding-right: 8px;
}

.checkbox-field input {
    width: 18px;
    height: 18px;
}


.checkbox-field input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border: 2px solid #ff3366;
    /* Choose color here */
    appearance: none;
    background-color: #1c1c22;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
}

.checkbox-field input[type="checkbox"]:checked::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 5px;
    width: 4px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.social-entry:last-child {
    margin: 0;
}

.gaps {
    gap: 12px 24px;
}

.parent .name-grid> :last-child {
    grid-column: 1 / -1;
}

.parent .athlete {
    padding-top: 12px;
}

.parent .athlete-home.grid-cols-2 {
    grid-template-columns: 1fr 150px;
    margin-top: 12px;
    gap: 24px;
}

.parent .athlete-home .form-field:last-child {
    max-width: 100%;
}

.parent .city-state {
    padding-top: 12px;
}

.parent {
    border-radius: 6px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.25);
    border-width: 1px;
    padding: 24px;
    margin-bottom: 20px;
}

.parent .line {
    border-color: #ffffffb3;
}

.remove_butn {
    margin-top: 20px;
    color: var(--theme-clr);
    position: relative;
    transition: all 0.2s linear;
    font-size: 14px;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
    background: #fff;
    padding: 8px 20px;
    border: 0;
    max-width: max-content;
    grid-column: 1 / -1;
}

.additional-entry {
    margin-bottom: 20px;
}

.sibling-entry {
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 24px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 6px;
    border-width: 1px;
    padding: 24px;
}

.sibling-entry .secondary-btn {
    margin-top: 0;
    grid-column: 1/-1;
}

.additional-entry .secondary-btn {
    grid-column: 1/-1;
    max-width: max-content;
}

.optional-parent .gaps {
    gap: 24px;
}

.optional-parent .heading-bar {
    font-size: 16px;
    font-weight: 700;
    padding-bottom: 24px;
}

.dashboard-tabs textarea.form-control {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.25);
    border-width: 1px;
    padding: 10px;
    box-shadow: none;
    outline: none;
    color: #fff;
    resize: none;
}

.social-dash .form-field {
    position: relative;
}

body .select2-container--open .select2-dropdown {
    left: 0;
    top: -10px;
}

body .select2-results__option[aria-selected] {
    cursor: pointer;
    font-size: 14px;
    color: #ef4868;
}

body .select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa;
    border-radius: 6px;
}

body .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 36px;
    width: 30px;
    background-image: url(https://wordpress-1180784-5480452.cloudwaysapps.com/wp-content/themes/goliathsports-child/assets/images/arrow-bar.svg);
    background-repeat: no-repeat;
    background-position: center right 10px;
}

body .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border: 0;
}

.form-field span.select2-container {
    width: 100% !important;
}

.form-field span.select2-container span.selection {
    width: 100%;
}

.form-field .select2-container--default .select2-selection--single {
    border-radius: 6px;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05), inset 0px 0px 0px 1px rgba(255, 255, 255, 0.1), inset 0px 0px 0px 0px rgba(255, 255, 255, 1);
    border: 0;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    width: 100%;
    height: 36px;
}

.form-field .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #fff;
    line-height: 28px;
    padding: 5px 10px;
    font-size: 14px;
}

/* .social-dash .form-field label {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
} */

.social-dash .heading-bar-flex {
    margin-bottom: 24px;
}

.additional .form-field:last-child {
    grid-column: 1 / -1;
    max-width: 90%;
}

.additional .form-field textarea {
    background: #292931;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05),
        inset 0px 0px 0px 1px rgba(255, 255, 255, 0.1),
        inset 0px 0px 0px 0px rgba(255, 255, 255, 1);
}

.btn-bar .primary-btn:first-child {
    background: transparent;
}



.toggle-btn-dasdboard {
    position: relative;
    z-index: 2;
    display: none;
}

.toggle-btn-dasdboard i {
    font-size: 30px;
    color: #fff;
}

.closed-btnns i {
    color: #fff;
    font-size: 28px;
    position: absolute;
    top: 0;
    right: 8px;
    display: none;
}

.btn-bar {
    display: flex;
    justify-content: end;
}

.closed-btnns {
    display: none;
}

.dashboard-tabs .nav-pills {
    margin-bottom: 24px;
}

.dashboard .site-footer {
    position: relative;
    z-index: 6;
}



/* Performance Metrics */
.athlete-height {
    margin-top: 24px;
}

.tracker {
    padding-top: 12px;
}

.tracker .primary-btn {
    padding: 8px 20px;
    font-size: 14px;
}

.tracker {
    align-items: end;
}

.space i {
    padding-right: 10px;
}

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

.tracker .space i {
    font-size: 20px;
}

.chart-container {
    background: #2d2a31;
    border-radius: 6px;
    padding: 24px;
    height: 100%;
}

.chart-container canvas {
    width: 100% !important;
}

canvas {
    display: block;
}

img.info {
    padding-left: 5px;
}

.tabless {
    background: #2d2a31;
    border-radius: 6px;
    padding: 24px;
    height: 100%;
}

.chart {
    gap: 12px;
    display: flex;
}

.chart .items {
    width: calc(100% / 2);
}

.tabless h5 {
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    color: var(--white);
    padding-bottom: 12px;
}

.table thead th {
    text-align: left;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    color: #ffffff;
    padding: 0 0 15px;
    white-space: nowrap;
}

.table tbody td {
    padding: 0;
    color: var(--white, #ffffff);
    text-align: left;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    padding: 16px 13px;
    white-space: nowrap;
}

.table tbody td:first-child {
    padding-left: 0;
}

.table thead {
    border-style: solid;
    border-color: #ffffff;
    border-width: 0px 0px 1px 0px;
}

.table td.text-success {
    color: #48ef69 !important;
}

.table td.text-danger {
    color: #C73232 !important;
}

.edit-delete i {
    font-size: 16px;
    color: #ef4868;
    padding-right: 8px;
}

.edit-delete i:last-child {
    padding-right: 0;
}

.table tbody .edit-delete {
    text-align: end;
}

.softball {
    padding-top: 12px;
}

.softball .grid {
    gap: 24px;
}

.top {
    padding-top: 12px;
}

.space i {
    font-size: 20px;
}


/* Academics */
.school-information .name-grid {
    padding-bottom: 12px;
}

.school-information .heading-bar-flex {
    margin-bottom: 24px;
}

.school-information .form-bar:has(> div) {
    border-radius: 6px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.25);
    border-width: 1px;
    padding: 24px;
    position: relative;
    padding-left: 58px;
}

/* .school-information .form-bar {
border-radius: 6px;
border-style: solid;
border-color: rgba(255, 255, 255, 0.25);
border-width: 1px;
padding: 24px;
position: relative;
padding-left: 58px;
} */

.school-information .form-bar img.info {
    position: absolute;
    left: 19px;
    top: 28px;
}

.school_institute .academic-entry {
    position: relative;
}

.school_institute .academic-entry img.info {
    top: 4px;
    left: -41px;
}

.upload-btn-main input[type="text"] {
    background-color: #1e1e2f;
    border: 1px solid #555;
    border-radius: 4px;
    padding: 8px;
    color: #fff;
    width: 200px;
}

.upload-btn-main .upload-btn {
    background-color: #ef476f;
    border: none;
    border-radius: 0;
    padding: 8px 16px;
    cursor: pointer;
    color: #ffffff;
    text-align: center;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
}

.upload-btn-main .file-name {
    color: #EF4868;
    text-decoration: underline;
    padding-left: 12px;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
}


.upload-btn-main #fileInput {
    display: none;
}

.academi-files .grid {
    align-items: end;
}

.school-information {
    padding-top: 24px;
}

.academi-files.school-information {
    padding-top: 0;
}

.flex-of {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 10px;
    align-items: center;
}

.cumulative span.align-center {
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    color: #fff;
}

.cumulative {
    width: 100%;
    max-width: 1243px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
}

.test-scores {
    width: 100%;
    max-width: 1326px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.taking-honors .grid-cols-2 {
    grid-template-columns: 1fr 2fr;
}


/* Praveen */
.events-details-left {
    display: flex;
    gap: 15px;
}

.events-details-icon {
    min-width: 20px;
}

.heading-bar-inner {
    color: #ffffff;
    text-align: left;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: capitalize;
}

.heading-bar-inner.training-type {
    font-size: 16px;
}

.event-details {
    border-radius: 6px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.25);
    border-width: 1px;
    padding: 24px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.events-details-right_hidden {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
}

.events-para {
    color: #ffffff;
    text-align: left;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 3px;
}

.events-para.label {
    font-weight: 700;
}

.border-btn {
    border-radius: 6px;
    border-style: solid;
    border-color: #31393e;
    border-width: 1px;
    padding: 8px 10px;
    background-color: #31393e;
    color: #fff;
    font-size: 14px;
    line-height: 17px;
    font-weight: 400;
}

.border-btn.active {
    border-color: #ef4868;
    background-color: transparent;
}

.events-details-right .border-btn {
    margin-right: 10px;
}

/*.heading-bar-flex-coaches {
margin-top: 30px;
margin-bottom: 20px;
}*/

.coaching-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    border-radius: 6px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.25);
    border-width: 1px;
    padding: 24px;
    margin-bottom: 12px;
}

.coaches-form-wrap {
    width: 100%;
}

.coaching-form-icon {
    width: 3%;
}

.coaching-form-area {
    width: 97%;
}

.coaching-form-bar1 {
    display: grid;
    grid-template-columns: 1fr 1fr 250px;
}

.coaches-form-wrap {
    width: 100%;
    display: flex;
}

.form-bar.coaching-form-bar2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.form-bar.coaching-form-bar2 .checkbox-field {
    grid-column: 1/-1;
}

.form-bar.coaching-form-bar2 .upload-main {
    grid-column: 1/-1;
    margin: 0;
}

.coaches-tab-card-wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.coaches-tabs-card {
    width: 49%;
}

.coaches-tabs-card .event-details {
    align-items: flex-start;
}

/* Praveen */

.chart-container h5 {
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    color: var(--white);
}



/* profile page start */
.profile-bnnr {
    padding: 0;
    position: relative;
}

.profile-bnnr .banner-img {
    width: 100%;
}

.profile-bnnr .banner-img img {
    width: 100%;
    object-fit: cover;
    height: 450px;
}

.profile-page .site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(49, 57, 62, 0.75);
}

.banner-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.banner-shape img {
    width: 100%;
    height: 100%;
}

.profile-top {
    background: #1e1e26;
    margin-top: -173px;
}

.profile-top .alora-img {
    width: 235px;
    height: 235px;
    position: relative;
    z-index: 2;
}

.profile-top .profile-grid-left {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: end;
    gap: 18px;
}

.profile-top .profile-grid-btn a {
    padding: 6px 22px 6px 22px;
    font-size: 14px;
    font-weight: 800;
    border-radius: 50px;
    text-wrap: balance;
}

.profile-grid-bar .grid-cols-2 {
    align-items: end;
    grid-template-columns: 1fr auto;
}

.alora-text-flex a {
    color: #ef4868;
    text-align: left;
    font-size: 18px;
    line-height: 38px;
    font-weight: 500;
}

.alora-text-flex {
    display: flex;
    align-items: end;
    gap: 24px;
}

.alora-text-flex a {
    text-decoration: underline;
}

.profile-grid-left .circle {
    width: 320px;
    height: 320px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    /*overflow: hidden;*/
    /* top: 30px; */
}

.profile-grid-left .circle::after {
    content: "";
    position: absolute;
    background: #1e1e26;
    inset: 0;
    height: 147px;
    top: auto;
    /* bottom: -36px; */
    width: 100%;
    /* bottom: -1px; */
    bottom: 0px;
}

.circle.remove_circle .text {
    opacity: 0;
    visibility: hidden;
}

.profile-grid-left .text {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotateText 10s linear infinite;
    background: hsl(349deg 84% 61% / 75%);
    border-radius: inherit;
    /* top: 36px; */
}

.profile-grid-left .text .char {
    position: absolute;
    left: 50%;
    font-size: 1.1em;
    transform-origin: 0 160px;
    text-transform: uppercase;
}

.profile-grid-left .text .char {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    line-height: 2.9;
    width: 16px;
    text-align: center;
}

@keyframes rotateText {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

.remove_cover_image~.profile-top {
    margin-top: -70px;
}

/*.remove_cover_image ~ .profile-top .profile-grid-left .circle::after {
opacity: 0;
}*/

/*.remove_cover_image ~ .profile-top .profile-grid-left .circle {
width: 190px;
height: 190px;
}

.remove_cover_image ~ .profile-top .profile-grid-left .circle .logo.alora-img {
width: 100%;
height: 100%;
}*/
.site-banner.remove_cover_image {
    padding-top: 170px;
    background: #1e1e26;
    isolation: isolate;
}

.site-banner.remove_cover_image .banner-shape {
    z-index: -1;
    height: 270px;
}

.remove_cover_image~.profile-top .alora-text {
    margin-left: 0;
}

/* Responsive Sizes */
@media (max-width: 500px) {
    .profile-grid-left .circle {
        width: 300px;
        height: 300px;
    }

    .profile-grid-left .logo {
        width: 225px;
        height: 225px;
    }

    .profile-grid-left .text .char {
        transform-origin: 0 150px;
    }
}

@media (max-width: 350px) {
    .profile-grid-left .circle {
        width: 220px;
        height: 220px;
    }

    .profile-grid-left .logo {
        width: 165px;
        height: 165px;
    }

    .profile-grid-left .text .char {
        font-size: 0.7em;
        transform-origin: 0 110px;
    }
}

@media (max-width: 230px) {
    .profile-grid-left .circle {
        width: 150px;
        height: 150px;
    }

    .profile-grid-left .logo {
        width: 112px;
        height: 112px;
    }

    .profile-grid-left .text .char {
        font-size: 0.4em;
        transform-origin: 0 75px;
    }
}


.general-side {
    background: #1e1e26;
    padding-top: 37px;
}

.general-side .grid-cols-2 {
    gap: 24px;
    display: flex;
    justify-content: space-between;
}

.item.left-sidebar-main {
    width: 30%;
}

.item.right-sidebar-main {
    width: 70%;
}

.general-side {
    background: #1e1e26;
}

#view_metric_name {
    min-width: 170px;
}

.icon-flexs {
    display: grid;
    gap: 12px;
    padding-bottom: 24px;
    grid-template-columns: 24px 1fr;
}

.icon-flexs p {
    padding: 0;
    margin: 0;
    color: #ffffff;
    text-align: left;
    font-size: 16px;
    font-weight: 400;
    padding-bottom: 4px;
}

.icon-img {
    width: 24px;
    height: 24px;
}

.icon-img img {
    width: 100%;
    height: 100%;
}

.left-sidebar .boxex {
    background: #2d2a31;
    border-radius: 6px;
    padding: 24px;
    margin-bottom: 24px;
}

.left-sidebar .heading-bar {
    padding-bottom: 24px;
}

.left-sidebar .heading-bar span {
    display: block;
}

.icon-content h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    padding-bottom: 4px;
}

.icon-flexs:last-child {
    padding-bottom: 0;
}

ul.social-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
}

ul.social-bar a {
    color: var(--theme-clr);
    font-size: 35px;
}

.icon-content span {
    display: block;
}

.left-sidebar .boxex .line {
    margin-top: 0;
}

.profile-top .profile-grid-btn {
    padding-bottom: 22px;
    border-bottom: 1px solid rgb(255 255 255 / 24%);
}

.profile-top .profile-grid-btn a img {
    margin-right: 12px;
}

.right-sidebar .boxex {
    background: #2d2a31;
    border-radius: 6px;
    padding: 22.72px;
    margin-bottom: 24px;
    position: relative;
}

.boxex-first {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 11px;
    justify-content: space-between;
}

.boxex-first span {
    color: #ffffff;
    font-size: 13.25333309173584px;
    line-height: 20.83px;
    font-weight: 400;
}

.boxex-first .heading-bar {
    font-size: 22.719999313354492px;
    font-weight: 700;
}


.batting p {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    padding-bottom: 12px;
    margin: 0;
}

.batting h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.batting {
    background: #221f26;
    border-radius: 6px;
    border-style: solid;
    border-color: #ef4868;
    border-width: 2px;
    padding: 12px;
    text-align: center;
    flex-grow: 1;
}

.batting-flex {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 24px;
}

.academic-grid .heading-bar {
    padding-bottom: 24px;
}

.right-sidebar .line {
    margin-top: 0;
}




.sat-btn .heading-bar {
    font-size: 20px;
    padding: 0;
    margin: 0 0 4px;
}

.sat-btn-flex {
    grid-template-columns: 1fr 1fr 1fr;
    display: grid;
    gap: 8px;
}



.sat-btn-first span {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
}

.sat-btn-first h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-top: 4px;
}

.sat-btn-first {
    background: #221f26;
    border-radius: 6px;
    border-style: solid;
    border-color: #ef4868;
    border-width: 2px;
    padding: 8px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.sat-btn-first.active {
    background: #ef4868;
}

.sat-btn {
    margin-bottom: 24px;
    padding-left: 39PX;
}

.act .sat-btn-flex {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin-bottom: 10px;
}

.sat-btn:last-child {
    margin-bottom: 0;
}

.right-sidebar .personal_training_wrap .event-details {
    background: #221f26;
    border-radius: 6px;
    padding: 24px;
    border: 0;
    align-items: flex-start;
}

.right-sidebar .border-btn.active {
    border-color: #ef4868;
    background-color: transparent;
    background: #ef4868;
}

.personal_training_wrap .heading-bar {
    margin-bottom: 24px;
}

.boxex.softball .heading-bar {
    margin-bottom: 24px;
}


.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 8px solid #c4c3c3ab;
    width: 94px;
    height: 94px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.play-btn i {
    font-size: 50px;
    color: #c4c3c3ab;
}

.play-btn.hidden {
    display: none;
}

.rtl-slider-flex .rtl-slider-nav .rtl-slider-slide img {
    border-radius: 5.68px;
}





.slider__image video {
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.slider .swiper-container {
    width: 100%;
    height: 100%;
}

.slider__flex {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 24px;
}

.slider__col {
    display: flex;
    flex-direction: column;
}

.slider__prev,
.slider__next {
    cursor: pointer;
    text-align: center;
    font-size: 14px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 3;
}

.slider__prev:focus,
.slider__next:focus {
    outline: none;
}

.slider__thumbs {
    height: calc(498px - 98px);
}

.slider__thumbs .slider__image {
    transition: 0.25s;
    opacity: 0.5;
}

.slider__thumbs .slider__image:hover {
    opacity: 1;
}

.slider__thumbs .swiper-slide-thumb-active .slider__image {
    opacity: 0.5;

}

.slider__images {
    height: 400px;
}

.slider__images .slider__image img {
    transition: 3s;
}

.slider__images .slider__image:hover img {
    transform: scale(1.1);
}

.slider__image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    isolation: isolate;
}

.slider__image img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 5.68px;
}

.slider__image iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider__prev,
.slider__next i {
    font-size: 29px;
    color: #fff;
}

.slider__prev {
    border-radius: 5px 5px 0px 0px;
    background: rgba(239, 72, 104, 0.75);
    margin-bottom: -22px;
}

.slider__next {
    background: rgba(239, 72, 104, 0.75);
    border-radius: 0px 0px 5px 5px;
    -webkit-border-radius: 0px 0px 5px 5px;
    -moz-border-radius: 0px 0px 5px 5px;
    -ms-border-radius: 0px 0px 5px 5px;
    -o-border-radius: 0px 0px 5px 5px;
    margin-top: -22px;
}

.slider__image:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: #0000006e;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.primary-chat h5.pri-subheading {
    color: #ef4868;
    font-size: 17px;
    border-left: 5px solid #ef4868;
    color: #fff;
    background: #ef48682e;
    padding: 10px;
    margin-bottom: 10px;
}

.primary-chat .icon-flexs.hi-wi {
    grid-template-columns: 85px 1fr;
    gap: 24px;
}

.primary-chat .icon-flexs .icon-img.hi-wi {
    width: 85px;
    height: 85px;
}

.primary-chat .icon-flexs .icon-img img {
    border-radius: 6px;
}

.tracker-bars .heading-bar-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.tracker-bars .heading-bar-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.heading-bar-flex .form-field {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: center;
}

.heading-bar-flex .form-field .label-bar {
    margin: 0;
}

.bottom-arrow {
    background: #ef4868;
    border-radius: 6px;
    text-align: center;
    padding: 0px;
    margin-top: 24px;
}

.bottom-arrow i {
    color: #fff;
    font-size: 24px;
}


/* profile second */

.sign-view {
    background: #221f26;
    border-radius: 6px;
    border-style: solid;
    border-color: #ef4868;
    border-width: 2px;
    padding: 24px;
    color: #ffffff;
    text-align: left;
    font-size: 16px;
    font-weight: 400;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

.sign-view:hover {
    background: #ef4868;
    color: #fff;
}

.complete-profile {
    position: absolute;
    top: 50%;
    left: 50%;
    background: #000000ad;
    width: 100%;
    transform: translate(-50%, -50%);
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

.slider {
    position: relative;
}

.complete-profile h3 {
    color: #ffffff;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
}

.complete-profile .primary-btn {
    width: 100%;
    max-width: 250px;
    margin: 24px 0;
}

.complete-profile p {
    color: #ffffff;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
}

.complete-profile p a {
    text-decoration: underline;
}

.complete-see {
    background: #ef4868;
    border-radius: 6px;
    padding: 24px;
    margin-bottom: 24px;
    text-align: center;
}

.complete-see h3 {
    color: #ffffff;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
}

.complete-see .primary-btn {
    background: #ffffff;
    border-style: solid;
    border-color: #ffffff;
    border-width: 1px;
    color: #ef4868;
    margin: 24px 0;
}

.complete-see p {
    color: #ffffff;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
}

/* sign styling start karishma*/
.free_profile .fp-tablink.active {
    background-color: #EF4868;
    color: white;
    border: none;
}

.free_profile .fp-tablink {
    border: 1px solid #EF4868;
    color: #EF4868;
    padding: 10px;
    margin: 0;
    border-radius: 0;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    background-color: transparent;
}

.free_profile .fp-tablist {
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.free_profile .fp-tabitem {
    display: block;
    flex-grow: 1;
    width: calc(50% - 10px);
}

/* Form card styling */
.fp-form-section {
    max-width: 560px;
    margin: 30px auto;
    padding: 24px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Submit button */
.fp-btn-pink {
    background-color: #EF4868;
    color: white;
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    border-radius: 0;
    border: 1px solid #EF4868;
}

.fp-btn-pink:hover {
    background: transparent;
    color: #EF4868;
    border: 1px solid #EF4868;
}

/* Success message */
.fp-text-success {
    font-size: 0.875em;
    color: #28a745;
}

/* Heading */
.fp-heading {
    font-size: 24px;
    font-weight: 800;
    font-family: "inter", sans-serif;
    line-height: 32px;
    color: #000;
}

.free_profile .form-label {
    text-align: left;
    display: block;
    font-size: 14px;
    line-height: 24px;
    color: #000;
    font-weight: 500;
}

.l_to {
    display: flex;
    justify-content: space-between;
}

.Referral_code {
    background: #F8F8F8;
    padding: 12px;
    border-radius: 6px;
}

.coaches {
    text-align: left;
    display: block;
    font-size: 14px;
    color: #000 !important;
    margin-top: 8px;
}

.user_name .form-label {
    display: inline;
    float: left;
}

.user_name small {
    float: right;
}

.building-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.building-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.start-jouney-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

/* sign styling end*/
.hidden {
    display: none !important;
}

.school_institute .academic-file-entry {
    position: relative;
}

.school_institute .academic-file-entry img.info {
    top: 1px;
    left: -40px;
}

.school_institute .academic-entry:not(:first-child) {
    margin-top: 20px;
}

.school_institute .academic-file-entry:not(:first-child) {
    margin-top: 20px;
}

.honors-group-wrap {
    grid-column: 1/-1;
}

.honor_rep_field {
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 24px;
    border-radius: 6px;
    display: grid;
    grid-gap: 24px;
}

.honor_rep_field:not(:first-child) {
    margin-top: 20px;
}

.label-bar span {
    margin-left: 10px;
}

.achivement-information .academic-file-entry {
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 24px;
    border-radius: 6px;
    display: grid;
    grid-template-columns: 180px 1fr;
    grid-gap: 10px;
}

.Extracurricular_rep_field {
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 24px;
    border-radius: 6px;
    display: grid;
    grid-gap: 24px;
}

.ncca-naia-eligibilty {
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 24px;
    border-radius: 6px;
    margin-top: 20px;
}

.Extracurricular_rep_field:not(:last-child) {
    margin-bottom: 20px;
}

.ncca-naia-eligibility-number {
    margin-top: 20px;
}

button#add-coach-entry {
    margin-left: unset;
}

.coaching-details button.remove-coach-entry {
    margin-left: 45px;
}

.training-infromation {
    margin: 0 0 24px;
    display: grid;
    grid-template-columns: 20px 1fr;
    grid-gap: 24px;
    padding: 24px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.training-feild-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 24px;
}

.training-feild-wrap .form-field:last-of-type {
    grid-column: 1/-1;
}

.main-gallery {
    display: grid;
    grid-template-columns: 20px 1fr;
    grid-gap: 24px;
    padding: 24px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.main-gallery:not(:last-child) {
    margin-bottom: 20px;
}

.main-gallery .feild-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 24px;
}

.form-bar.username {
    grid-template-columns: 1fr auto 1fr;
    align-items: end;
}

.form-bar.username .primary-btn {
    padding: 8px 12px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.psnl_evnt_dtl {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 24px;
    grid-row-gap: 10px;
}

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

.form-field.profile_url_plc {
    border-radius: 6px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.25);
    border-width: 1px;
    padding: 24px;
    margin-bottom: 12px;
}

.form-field.profile_url_plc input#public-profile-url {
    line-height: normal;
    height: 36px;
    padding: 5px 10px !important;
}

.form-field.profile_url_plc .primary-btn {
    line-height: normal;
    padding: 8px 12px;
    font-size: 14px;
}

.table-scrool {
    height: 360px;
    overflow-y: auto;
    /* scrollbar-width: thin;              
scrollbar-color: #EF4868 #1e1e26;   
overflow: auto; */
    scrollbar-width: none;
}

/* .table-scrool .table-responsive {
overflow: clip;
} */

.table-scrool table.table thead {
    position: sticky;
    top: 0;
    background: #2d2a31;
    box-shadow: 0 0 0px 1px #fff;
}

/* h5#chart_title {
    margin: 0 0 10px;
} */
.chart-label-heading {
    margin: 0 0 10px;
}

h5#chart_title br {
    display: none;
}

.chartjs-tooltip {
    max-width: 180px !important;
    white-space: nowrap;
}

input[type="range"] {
    -webkit-appearance: none;
    /* Remove default Chrome/Safari styles */
    appearance: none;
    width: 100%;
    height: 6px;
    /* Height of the track */
    background: #ddd;
    border-radius: 3px;
    outline: none;
}

/* Webkit browsers (Chrome, Safari) - Track */
input[type="range"]::-webkit-slider-runnable-track {
    height: 6px;
    background: #fff;
    border-radius: 3px;
}

/* Thumb */
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: #EF4868;
    border-radius: 50%;
    margin-top: -5px;
    /* Centers the thumb over the track */
    cursor: pointer;
}

/* Firefox */
input[type="range"]::-moz-range-track {
    height: 6px;
    background: #fff;
    border-radius: 3px;
}

input[type="range"]::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: #EF4868;
    border: none;
    border-radius: 50%;
    cursor: pointer;
}


.form-field input[type="range"] {
    box-shadow: none;
    min-height: 0;
    padding: 0;
}

/* .table-scrool::-webkit-scrollbar {
width: 8px;
height: 8px;
}

.table-scrool::-webkit-scrollbar-track {
background: #1e1e26;
}

.table-scrool::-webkit-scrollbar-thumb {
background-color: #EF4868;
border-radius: 10px;
} */

.achivement-information .heading-bar-flex {
    margin-bottom: 25px;
}

.test-scores .form-field:nth-of-type(5) {
    border-left: 1px solid rgba(255, 255, 255, 0.25);
    padding-left: 24px;
}

.test-scores .form-field:nth-of-type(8) {
    border-left: 1px solid rgba(255, 255, 255, 0.25);
    padding-left: 24px;
}

.test-scores .form-field:nth-of-type(13) {
    border-left: 1px solid rgba(255, 255, 255, 0.25);
    padding-left: 24px;
}

.free_profile.log_in {
    margin-top: 100px;
    padding-top: 100px;
}

#loginModal .free_profile.log_in {
    margin: 0;
    padding: 0;
}


.parent .name-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.form-bar.Coursework .flex-of {
    grid-template-columns: 1fr;
}

.left-sidebar .boxex.box_space {
    padding-bottom: 0px;
}

.left-sidebar .boxex.box_space hr.line {
    display: none;
}

.upload-box .primary-btn {
    margin-top: 30px;
}

.academic-file-entry .form-field:last-child {
    grid-column: 1/-1;
}

.four_zero_four {
    min-height: 100vh;
    padding-top: 101px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--black);
}

.four_zero_four h1 {
    color: #ef4868;
    display: block;
    margin: 0 0 12px;
    font-size: 203px;
    font-weight: 600;
}



.four_zero_four h3.error__title {
    color: #fff;
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 24px;
    text-align: center;
}

.four_zero_four p {
    color: #CDCDCD;
    font-size: 24px;
    text-align: center;
    width: 100%;
    max-width: 662px;
    margin: 0 auto;
}


.four_zero_four .secondary-btn {
    margin-top: 40px;
}

button#add-coach-entry {
    display: flex;
    align-items: center;
}


/* new css 3 july 2025  */
.header-rt-btns {
    display: flex;
    gap: 20px;
    margin-left: 28px;
}


/* toolitip start */
.sat-btn .heading-bar img.info {
    vertical-align: inherit;
}

.sat-btn .heading-bar .tooltip-wrapper {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.sat-btn .heading-bar .tooltip-text {
    visibility: hidden;
    background-color: #ef4868;
    color: #fff;
    text-align: center;
    padding: 5px 8px;
    border-radius: 5px;
    position: absolute;
    z-index: 999;
    bottom: 0;
    transform: translateX(100%);
    right: -2px;
    left: auto;
    font-size: 13px;
    opacity: 0;
    transition: opacity 0.3s ease;
    min-width: 180px;
    width: 280px;
    text-align: center;
}

.sat-btn .heading-bar .tooltip-wrapper:hover .tooltip-text {
    visibility: visible;
    opacity: 1;

}

/* toolitip end */