* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

:root {
    --title-color: #101828;
    --lebel-color: #1e758d;
    --text-color: #475467;
    --body-color: #333;
    --link-color: #1e758d;
}

.mb4 {
    margin-bottom: 4px !important;
}
.mb-6 {
    margin-bottom: 6px !important;
}

.mb-8 {
    margin-bottom: 8px !important;
}

.mb-12 {
    margin-bottom: 12px !important;
}

.mb-16 {
    margin-bottom: 16px !important;
}

.mb-24 {
    margin-bottom: 24px !important;
}

.mb-32 {
    margin-bottom: 32px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.mb-48 {
    margin-bottom: 48px !important;
}

.mb-56 {
    margin-bottom: 56px !important;
}

.mb-64 {
    margin-bottom: 64px !important;
}

::placeholder {
    color: #667085;
    font-size: 14px;

    line-height: 24px;
    text-align: left;
}

body {
    font-family: "Inter", sans-serif !important;
    /* background: url(../assets/images/lines.png);
      background-repeat: no-repeat;
      background-position: top center; */
    color: var(--body-color);
    opacity: 1;
}
.image-bg {
    background: url(../images/lines.png);
    background-repeat: no-repeat;
    background-position: top center;
    margin-top: -100px;
    padding-top: 100px;
}

/* width */
::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f5f5f5;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--text-color);
    border-radius: 5px;
}

.main-dashboard {
    display: flex;
    position: static;
}

/*   ================= left sidebar styling starts here  ============== */
.main-dashboard .left-side {
    width: 288px;
    position: relative;
    border-right: 1px solid #3333334d;
}


.main-dashboard .left-side .inner {
    padding: 32px 24px;
    position: relative;
    height: 100vh;
     overflow-y: hidden;
    /*padding-bottom: 100px;*/
}

/*.main-dashboard .left-side .inner .profile {*/
/*  position: absolute;*/
/*  bottom: 0px;*/
/*  padding: 24px;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  gap: 12px;*/
/*  left: 0px;*/
/*  height: 100px;*/
/*  background-color: white;*/
/*}*/

.main-dashboard .left-side .inner .profile img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.main-dashboard .left-side .inner .profile .data .name {
    color: var(--body-color);
    font-family: Inter;
    font-size: 14px;
    font-weight: 600;

    text-align: left;
}

.main-dashboard .left-side .inner .profile .data .email {
    color: var(--body-color);
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;

    text-align: left;
}

.main-dashboard .left-side .inner .logo {
    margin-bottom: 16px;
    height: auto;
}

.main-dashboard .left-side .inner .logo img {
    width: 70px;
    height: auto;
}

.main-dashboard .left-side .inner .search-wrapper {
    position: relative;
    margin-bottom: 24px;
}

.main-dashboard .left-side .inner .search-wrapper input {
    padding: 10px 16px;
    height: 40px;
    box-shadow: 0px 1px 2px 0px #1018280d;
    border-radius: 8px;
    background: #1e758d1a;
    padding-left: 40px;
    font-size: 14px;
    color: #1e758d;
    border: 1px solid #1e758d1a;
    width: 100%;
}

input:focus,
select:focus {
    box-shadow: none;
    outline: none;
}

a {
    text-decoration: none !important;
    color: inherit;
}

.main-dashboard .left-side .inner .search-wrapper svg {
    position: absolute;
    width: 16px;
    height: auto;
    object-fit: contain;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
}
/*.main-dashboard .left-side .links-wrapper  {*/
/*  max-height: 400px;*/
/*  overflow-y: auto;*/
/*}*/
.links-wrapper .link-item {
    display: flex;
    position: relative;
    height: 40px;
    padding: 10px 14px;
    align-items: center;
    padding-right: 30px;
    font-size: 14px;
    gap: 16px;
    color: var(--body-color);
    margin-bottom: 22px;
    border-radius: 8px;
    transition: all 0.2s ease-in-out;
}
.links-wrapper .link-item .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 14px;
}
.links-wrapper .link-item[aria-expanded='true'] .arrow i{
    transform: rotate(180deg);


}
.links-wrapper .link-item .arrow img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.links-wrapper .link-item svg {
    flex-shrink: 0;
    height: 20px;
    width: 20px;
    object-fit: contain;
}

.links-wrapper .link-item.active {
    background-color: #1e758d;
    color: white;
}

.links-wrapper .link-item.active svg {
    color: white;
}

.links-wrapper .link-item.active svg path {
    stroke: white !important;
}

.links-wrapper .link-item:hover{
    background-color: #1e758d !important;
    color: white !important;
}
.links-wrapper .link-item:hover a {
    color: white !important;
}
.links-wrapper .link-item:hover svg {
    color: white !important;
}

.links-wrapper .link-item:hover svg path {
    stroke: white !important;
}
.links-wrapper .link-item.fill:hover svg path {
    fill: white !important;
    stroke: white !important;
}
.links-wrapper .link-item .count {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #1e758d33;
    font-size: 10px;
    font-weight: 500;
    color: #1e758d;
}

.links-wrapper .link-item:hover .count,
.links-wrapper .link-item.active .count {
    background-color: white;
}
.table-tooltip-wrapper .inner-text {
    position: relative;
    font-size: 12px;
    color: #667085;
    font-weight:600;
}
.table-tooltip-wrapper .inner-text .tooltipp{
    position: absolute;
    min-width: 100px;
    background-color: #1E758D;
    border-radius: 8px;
    padding: 8px 12px;
    box-shadow: 0px 4px 6px -2px #10182808;

    justify-content: center;
    align-items: center;
    gap: 12px;
    top:-10px;
    right:-20px;
    display: none;
}
.pointer {
    cursor: pointer;
}
.table-responsive.custom {
    overflow-y: visible !important;
}
.table-tooltip-wrapper .inner-text .tooltipp span {
    font-size: 12px;
    color:#fff;
    font-weight: 600;
}
.table-tooltip-wrapper .inner-text:hover .tooltipp {
    display: flex !important;
}
.main-dashboard .my-shortlist-wrapper .my-list {
    padding-left: 0px;
}
.main-dashboard .my-shortlist-wrapper .my-list .item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    font-size: 14px;
    font-weight: 500;
    gap: 10px;
    color: var(--body-color);
    border-radius: 8px;
    margin-bottom: 16px;
}
.main-dashboard .my-shortlist-wrapper .my-list .item:hover {
    background-color: #1E758D;
    color: white;
}
.main-dashboard .my-shortlist-wrapper .my-list .item:hover .counter_icon {
    background-color:  white;
    color: #1E758D;
}
.main-dashboard .my-shortlist-wrapper .my-list .item .action svg {
    width: 16px !important;
    height: 16px !important;
}
.main-dashboard .my-shortlist-wrapper .my-list .item:hover .action svg path{
    fill: white !important;


}
.main-dashboard .my-shortlist-wrapper .my-list .item .actions {
    display: flex;
    align-items: center;
    gap: 4px;
}
.main-dashboard .my-shortlist-wrapper .my-list .item .actions .icon {
    cursor: pointer;
}
.main-dashboard .my-shortlist-wrapper .my-list .item .actions .icon img {
    cursor: pointer;
    width: 16px;
    height: 16px;
    object-fit: contain;
}
.create-button {
    padding: 10px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    gap: 8px;
    justify-content: center;
    background: #1E758D1A;
    border: 1px solid #D0D5DD;
    color: #1E758D;
    font-size: 14px;
    font-weight: 400;
    width: 100%;
    margin-bottom: 16px;

}
/* .create-button svg path {
    fill: #1E758D !important;
} */
.create-button img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}
/*   ================= right sidebar styling starts here  ============== */
.main-dashboard .right-side {
    width: 320px !important;
    border-left: 1px solid #3333334d;
    height: 100vh;
    overflow-y: auto;
}

.main-dashboard .right-side .inner {
    padding: 32px 24px;
    position: relative;
}
.main-dashboard .right-side .inner.no-padding {
    padding:0px 0px;
}
.main-dashboard .right-side .inner .tag {
    margin: auto;
    margin-bottom: 16px;
    padding: 8px 12px;
    gap: 0px;
    border-radius: 16px;
    background: #1e758d1a;
    font-family: Inter;
    font-size: 10px;
    font-weight: 500;
    color: #1e758d;
    text-align: center;
    width: max-content;
}
.main-dashboard .right-side .inner .profile {
    height: 104px;
    width: 104px;
    margin: auto;
    margin-bottom: 16px;
}
.main-dashboard .right-side .inner .profile img {
    width: 100%;
    height: 100%;
    /* border-radius: 50%; */
    object-fit: contain;
}
.main-dashboard .right-side .inner .intro {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: var(--text-color);
    gap: 8px;
}
.main-dashboard .right-side .inner .intro .name {
    color: var(--body-color);
    font-size: 18px;
    font-weight: 600;

    letter-spacing: -0.02em;
}
.main-dashboard .right-side .inner .intro img {
    width: 20px;
    height: 20px;
    object-fit: cover;
    border-radius: 50%;
}
.main-dashboard .right-side .inner .info {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 8px;
}
.main-dashboard .right-side .inner .info span {
    font-size: 13px;
    color: var(--body-color);
    font-weight: 400;
}
.main-dashboard .right-side .inner .social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}
.main-dashboard .right-side .inner .social-links img {
    width: 24px;
    height: 24px;
    object-fit: cover;
    border-radius: 50%;
}
.main-dashboard .right-side .inner .social-links img[src*="twitter"] {
    width: 18px;
    height: 18px;
}
.main-dashboard .right-side .inner .social-links img.no-radius, img.no-radius{
    border-radius: 0px !important;
}
.main-dashboard .right-side .inner .edit-button {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 12px;
    border-radius: 8px;
    background-color: #1e758d;
    border: 1px solid #1e758d;
    gap: 8px;

    font-size: 14px;
    font-weight: 400;
    color: white;
    text-align: center;
    margin-bottom: 16px;
    box-shadow: 0px 1px 2px 0px #1018280d;
    height: 44px;
}
.main-dashboard .right-side .inner .view-button {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 12px;
    border-radius: 8px;
    background: #1e758d33;

    border: 1px solid #d0d5dd;
    gap: 8px;

    font-size: 14px;
    font-weight: 400;
    color: #1e758d;
    text-align: center;
    margin-bottom: 16px;
    box-shadow: 0px 1px 2px 0px #1018280d;
    height: 44px;
}
.profile-switch {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    border: 1px solid #d0d5dd;
    border-radius: 8px;

    box-shadow: 0px 1px 2px 0px #1018280d;
    height: 44px;
}
.profile-switch .text {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-color);
    text-align: left;
}

.main-dashboard .passport-section {
    padding: 24px;
    border-bottom: 1px solid #3333334d;
    border-top: 1px solid #3333334d;
}
.main-dashboard .passport-section .label {
    color: var(--body-color);
    font-size: 14px;
    font-weight: 400;
    line-height: 16.94px;
    text-align: left;
    margin-bottom: 8px;
}
.main-dashboard .passport-section .passports {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.main-dashboard .passport-section .passports img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
}
.main-dashboard .coach-info {
    padding: 24px;
    border-top: 1px solid #3333334d;
}
.main-dashboard .coach-info .title {
    font-size: 20px;
    font-weight: 600;

    letter-spacing: -0.02em;
    color: var(--body-color);
}
.main-dashboard .right-side .title-small {
    font-size: 20px;
    font-weight: 600;

    letter-spacing: -0.02em;
    color: var(--body-color);
}

.buttons-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;

}
.buttons-flex .button {
    margin: 0px !important;
}
.buttons-flex .button-light,.buttons-flex .button {
    font-size: 16px;
    font-weight: 600;
}
.modal-content .buttons-flex .button-light,.modal-content .buttons-flex .button {
    min-width: 140px;
}
.button-light {
    padding: 10px 36px;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #1e758d;
    box-shadow: 0px 1px 2px 0px #1018280d;
    color: #1e758d;
    font-size: 14px;
    font-weight: 400;

    text-align: center;
}
.main-dashboard .filter-item-right {
    border-radius: 8px;
    border: 1px solid #F0F0F0;
    margin-bottom: 12px;
}
.main-dashboard .filter-item-right .filter-header {
    padding: 8px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color:#000000E0;

}
.main-dashboard .filter-item-right:has(.show) .filter-header img {
    transform: rotate(-180deg) !important;
}
.main-dashboard .filter-item-right .filter-header img {
    width: 16px;
    height: 16px;
    transform: rotate(0deg);
}
.filter-body {
    padding: 12px 16px;
}
.filter-body .input-wrapper {
    position: relative;
    margin-bottom: 8px;
}
.filter-body .input-wrapper img {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    height: 16px;
    width: 16px;
    object-fit: contain;
}
.filter-body .input-wrapper input {
    height: 44px;
    width: 100%;
    font-size: 14px;
    border-radius: 8px;
    padding: 10px 14px;
    padding-left: 40px !important;
    border: 1px solid #D0D5DD;
}
.right-side .see_more {
    font-size: 14px;
    color: #1E758D;
}
/* ==== Custom checkbox styling starts here ========= */
.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    cursor: pointer;
}
.custom-checkbox .profile {
    display: flex;
    align-items: center;
    gap: 8px;
}
.custom-checkbox .profile img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}
.custom-checkbox .profile .data .title {
    font-size: 12px;
    line-height: 14px;
    color: var(--text-color);
    font-weight: 500;
}
.custom-checkbox .profile .data .text {
    font-size: 12px;
    line-height: 12px;
    color: rgba(102, 112, 133, 1);
    font-weight: 400;
}
.custom-checkbox label {
    margin: 0px;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-color);
    text-align: left;

}

.custom-checkbox input {
    flex-shrink: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    height: 18px;
    border: none;
    width: 18px;

}

.custom-checkbox input:before {
    content: '';
    border-radius: 5px;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    background: #fff;
    height: 100%;
    border: 1px solid #D9D9D9;
    box-sizing: border-box;
}

.custom-checkbox input:checked:before {
    background: #1E758D;

    border: 1px solid #1E758D;
}

.custom-checkbox input:checked:after {
    content: "";
    background-image: url('./images/check.svg');
    width: 10px;
    height: 8px;
    background-repeat: no-repeat;
    background-position: contain;
    position: absolute;
    left: 4px;
    top: 4px;
    font-size: 12px;

}

/* ==== Custom radio styling starts here ========= */
.custom-radio {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    cursor: pointer;
}

.custom-radio label {
    margin: 0px;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-color);
    text-align: left;

}

.custom-radio input {
    flex-shrink: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    height: 18px;
    border: none;
    width: 18px;

}

.custom-radio input:before {
    content: '';
    border-radius: 50%;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    background: #fff;
    height: 100%;
    border: 1px solid #D9D9D9;
    box-sizing: border-box;
}

.custom-radio input:checked:before {
    background: #fff;

    border: 1px solid #1E758D;
}

.custom-radio input:checked:after {
    content: "";
    position: absolute;
    width: 11px;
    border-radius: 50%;
    height: 11px;
    background-color: #1E758D;
    left: 50%;
    top:50%;
    transform: translate(-50%, -50%);
    font-size: 12px;

}

.main-dashboard .coach-info .title-small {
    font-size: 14px;
    font-weight: 600;

    letter-spacing: -0.02em;
    color: var(--body-color);
}
.main-dashboard .coach-info .subtitle {
    font-size: 16px;
    font-weight: 600;
    color: var(--body-color);

    letter-spacing: -0.02em;
}
.main-dashboard .coach-info .text {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-color);
}
.main-dashboard .coach-info .tag-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}
.main-dashboard .coach-info .tag {
    border: 1px solid #d0d5dd;
    border-radius: 5px;
    padding: 4px 8px;
    color: var(--text-color);
    font-size: 13px;
    font-weight: 400;
    width: max-content;
    text-align: center;
}
.main-dashboard .coach-info .history-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
    color: var(--body-color);
}
.main-dashboard .coach-info .history-item .icon {
    flex-shrink: 0;
    height: 24px;
    width: 24px;
}
.main-dashboard .coach-info .history-item .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}
.main-dashboard .coach-info .history-item .data .text-large {
    font-size: 16px;
}
.main-dashboard .coach-info .history-item .data .text-med {
    font-size: 14px;
    color: var(--text-color);
}
.main-dashboard .coach-info .history-item .data .text-large a {
    font-weight: 600;
    color: var(--body-color);
}

.main-dashboard .input-switch-wrapper {
    width: 33px;
    height: 20px;

    border-radius: 64px;
    position: relative;
}
.main-dashboard .input-switch-wrapper input[type="checkbox"] {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    opacity: 0;
    z-index: 2;
    cursor: pointer;
}
.main-dashboard .input-switch-wrapper .track {
    width: 33px;
    height: 20px;
    border-radius: 60px;
    background-color: #d0d5dd;
    transition: all 0.1s ease-in-out;
    position: relative;
}
.main-dashboard .input-switch-wrapper .track .circle {
    position: absolute;
    height: 17px;
    width: 17px;
    border-radius: 50%;
    background-color: white;
    transition: all 0.3s ease-in-out;
    top: 50%;
    transform: translateY(-50%);
    left: 1px;
}
.main-dashboard .input-switch-wrapper input:checked + .track {
    background-color: #1E758D;
}
.main-dashboard .input-switch-wrapper input:checked + .track .circle {
    right: 1px;
    left: auto;
    transition: all 0.3s ease-in-out;
}

/*   ================= main content styling starts here  ============== */
.main-dashboard .center-content {
    width: calc(100% - 612px);
    position: relative;
    height: 100vh;
    overflow-y: auto;
}
.main-dashboard .center-content.full {
    width: calc(100% - 288px) !important;
    position: relative;
    height: 100vh;
    overflow-y: auto;
}
.main-dashboard .center-content .inner {
    height: 100%;
    padding: 32px;
}

.main-dashboard .center-content .inner .search-wrapper {
    position: relative;
    margin-bottom: 24px;
}

.main-dashboard .center-content .inner .search-wrapper input {
    padding: 10px 16px;
    height: 40px;
    box-shadow: 0px 1px 2px 0px #1018280d;
    border-radius: 8px;
    background: #fff;
    padding-left: 40px;
    font-size: 14px;
    color: #1e758d;
    border: 1px solid #1e758d1a;
    width: 100%;
}

.main-dashboard .center-content .inner .search-wrapper svg {
    position: absolute;
    width: 16px;
    height: auto;
    object-fit: contain;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.main-dashboard .center-content .banner {
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0) 100%
    ),
    url(../assets/images/bannerbg.png);
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 240px;
    border-radius: 16px;
    margin-bottom: 16px;
    position: relative;
    padding: 60px 24px;
}
.main-dashboard .center-content .banner .plyer {
    position: absolute;
    right: 0px;
    height: 240px;
    object-fit: cover;
    bottom: 0px;
}
.main-dashboard .center-content .banner .subtitle {
    font-size: 16px;
    font-weight: 400;
    color: white;
    text-align: left;
}

.main-dashboard .center-content .banner .title {
    font-size: 24px;
    font-weight: 600;
    color: white;
    letter-spacing: -0.02em;
    text-align: left;
    margin-bottom: 24px;
}

.main-dashboard .center-content .banner .button {
    padding: 10px 36px;
    background-color: #1e758d;
    border-radius: 8px;
    border: 1px solid #1e758d;
    box-shadow: 0px 1px 2px 0px #1018280d;
    color: white;
    font-size: 14px;
    font-weight: 400;

    text-align: center;
}
.main-dashboard .short-list-wrapper .short-list-item {
    padding: 20px;
    border-radius:16px ;
    border: 1px solid #D0D5DD;
    margin-bottom: 16px;
}
.main-dashboard .short-list-wrapper .short-list-item .title {
    font-size: 16px;
    font-weight: 600;
    color: var(--body-color);
}
.main-dashboard .short-list-wrapper .short-list-item .text {
    font-size: 11px;
    font-weight: 400;
    color: var(--body-color);
}
.main-dashboard .short-list-wrapper .short-list-item .actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.main-dashboard .short-list-wrapper .short-list-item .actions .action {
    cursor: pointer;

}
.main-dashboard .short-list-wrapper .short-list-item .actions .action img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.main-dashboard .short-list-wrapper .short-list-item .view-list {
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #1E758D;
}
.players-icons {
    display: flex;
    align-items: center;

}
.players-icons .icon {
    width:26px !important;
    height:26px !important;
    border: 2px solid white;
    position: relative;
    z-index: 0;
    border-radius: 50% !important;
    background-color: transparent !important;
    padding: 0px !important;
    flex-shrink: 0;
    box-shadow: 0px 1px 2px 0px #1018280d;
    display: flex;
    justify-content: center;
    align-items: center;

}
.players-icons .icon.centerr {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #1E758D !important;
    background-color: #D2E3E8 !important;
    font-size: 10px;
}
.players-icons .icon + .icon {
    margin-left: -6px;
    z-index: inherit;
}
.players-icons .icon img {
    width: 100% !important;
    height: 100% !important;
    border-radius: 50%;

    object-fit: cover;
}
.main-dashboard .center-content .main-title {
    color: var(--body-color);
    font-size: 24px;
    font-weight: 600;
     margin-bottom: 12px;
    letter-spacing: -0.02em;
    text-align: left;
}
.main-dashboard .center-content .text-top {
    font-weight: 400;
    font-size: 14px;
    color: var(--text-color);

}
.main-dashboard .center-content .flex-top {
    display: flex;
    justify-content: space-between;
    align-items: center;

}
.main-dashboard .center-content .flex-top .icon {
    cursor: pointer;
}
.main-dashboard .center-content .flex-top .icon svg {
    height: 24px;
    width: 24px;
    object-fit: contain;
}
.main-dashboard .center-content .text {
    color: var(--body-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    text-align: left;
}
.main-search {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
}
.main-search select {
    border: none;
    padding: 16px 4px;
    text-align: left;
    width: 150px;
}
.main-search select:focus {
    outline: none;
    box-shadow: none;
}
.main-search .input-wrapper {
    position: relative;
    flex-wrap: 0;
    flex-basis: auto;
}
.main-search .input-wrapper img {
    position: absolute;
    top: 50%;
    height: 16px;
    width: 16px;
    object-fit: contain;
    left: 16px;
    transform: translateY(-50%);
}
.main-search .input-wrapper input {
    border: none !important;
    border-left: 2px solid #3333331A !important;
    padding-left: 40px !important;
    width: 100%;
    color: #1E758D !important;
    font-size: 14px;
    height: 40px;
    box-shadow: none !important;
    border-radius: 0px !important;
}
.search_wrapper {
    position: relative;
    margin-bottom: 16px;

}
.search_wrapper img.search {
    position: absolute;
    top: 50%;
    height: 16px;
    width: 16px;
    object-fit: contain;
    left: 20px;
    transform: translateY(-50%);
}
.search_wrapper input {
    padding: 8px 14px;
    border: 1px solid #D0D5DD;
    border-radius: 8px;
    box-shadow: 0px 1px 2px 0px #1018280D;

    padding-left: 40px !important;
    width: 100%;
    color: #1E758D !important;
    font-size: 14px;
    height: 40px;


}
.search_wrapper:hover .search-results {
    display: block;
}
.search_wrapper .search-results {
    position: absolute;
    top: 45px;
    width: 100%;
    z-index: 1;
    left: 0px;
    padding: 10px 10px;
    background-color: white;
    display: none;
}
.search_wrapper .search-results .title-small {
    font-size: 16px;
    color: #333333;
    font-weight: 700;
    margin-bottom: 16px;
}
.search_wrapper .search-results .search-items .search-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.search_wrapper .search-results .search-items .search-item .left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.search_wrapper .search-results .search-items .search-item .left .image {
    width: 32px;
    height: 32px;
}
.search_wrapper .search-results .search-items .search-item .left .image .img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    flex-shrink: 0;
    object-fit: cover;
    position: relative;
    left: 0;
    top: 0;
    transform: none;
}
.search_wrapper .search-results .search-items .search-item .left .name {
    color: #222222;
    font-size: 14px;
    font-weight: 500;
}
.search_wrapper .search-results .close-icon {
    cursor: pointer;
}
.search_wrapper .search-results .close-icon img{
    width: 16px;
    height: 16px;
    object-fit: contain;
}
.players-wrapper .player {
    margin-bottom: 32px;
}
.players-wrapper .player .title {
    font-size: 18px !important;
    color: black;
}

.short-modal .modal-content {
    max-width: 470px;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #EEEEEE;
    box-shadow: 0px 0px 16px 0px #3333331A;
    margin: auto;

}
.short-modal .modal-content .header-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
}
.short-modal .modal-content .header-top .text {
    font-size: 24px;
    color: #333333;
    font-weight: 600;
}
.short-modal .modal-content .header-top .icon {
    cursor: pointer;
}
.short-modal .modal-content .header-top .icon img {
    width: 18px;
    height: auto;
}
.short-modal .modal-content .rating-info .img{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: block;
    object-fit: cover;
    border: 1px solid #f5f5f5;
    margin: auto;
    margin-bottom: 16px;

}
.short-modal .modal-content .rating-info .title-small {
    color: #1E758D;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    text-align:center;
    margin-bottom: 16px;

}
.short-modal .modal-content .rating-info .rating {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    margin-bottom: 20px;
}
.short-modal .modal-content .rating-info .rating img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}
.short-modal .button {
    border-radius: 8px;
    padding: 12px 16px;
    background-color: #1E758D;
    border: none;
    font-size: 16px;
    color: white;
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    width: max-content;
    margin: auto;
    font-weight: 600;
}
.search-modal .modal-content {
    border-radius: 8px 8px 16px 16px;
    max-width: 768px;
    box-shadow: 0px 8px 34px 0px #00000033;
    padding: 16px 0px 16px 16px;
    background-color: #F4F4F5;

}
.search-modal .modal-content .input-wrapper {
    position: relative;
    height: 40px;
    margin-bottom: 8px;

}
.search-modal .modal-content .input-wrapper img {
    position: absolute;
    height: 16px;
    width: 16px;
    object-fit: contain;
    top: 50%;
    transform: translateY(-50%);
    left: 4px;
}
.search-modal .modal-content .input-wrapper input {
    background-color: transparent !important;
    height: 40px !important;
    color: #1E758D;
    font-size: 14px;
    width: 100%;
    padding-left: 34px !important;
    border:none !important;
    border-radius: 0px !important;
    border-bottom: 1px solid #3333331A !important;
}
.search-modal .modal-content .search-content {
    padding-right: 14px;
}
.search-modal .modal-content .search-content .title-small {
    font-weight: 700;
    font-size: 16px;
    color: #333333;
    margin-bottom: 16px;
}
.search-modal .modal-content .search-content .seacrh-list  {
    margin-bottom: 12px;
}
.search-modal .modal-content .search-content .seacrh-list .seacrch-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}
.search-modal .modal-content .search-content .seacrh-list .seacrch-item .left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.search-modal .modal-content .search-content .seacrh-list .seacrch-item .left img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.search-modal .modal-content .search-content .seacrh-list .seacrch-item .left .name {
    color: #222;
    font-size: 14px;
    font-weight: 500;

    text-align: left;

}
.search-modal .modal-content .search-content .seacrh-list .seacrch-item .icon {
    cursor: pointer;
}
.search-modal .modal-content .search-content .seacrh-list .seacrch-item .icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;

}
.search-modal .modal-content .search-content .coaches-list,.search_wrapper .coaches-list{
    display: flex;
    max-width: 400px;
    flex-wrap: wrap;
    gap: 8px;

}
.search-modal .modal-content .search-content .coaches-list .coach,.search_wrapper .coaches-list .coach {
    padding: 8px 16px;
    border: 1px solid #D0D5DD;
    color:#222;
    font-size: 14px;
    font-weight: 500;
    background-color: white;
    border-radius: 32px;
    text-align: center;

}
.players-wrapper .player .image-wrapper {
    height: 300px;
    width: 100%;
    border: 1px solid #f8f8f8;
    /* padding: 8px; */
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 21px;
    position: relative;
}
.players-wrapper .player .image-wrapper-large {
    height: 410px;
    width: 100%;
    margin-bottom: 21px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding: 8px; */
    border-radius: 8px;
    border: 1px solid #f8f8f8;
    position: relative;
}
.remove-img {
    border: none;
    padding: none;
    background-color: transparent;
    position: absolute;
    top: -24px;
    right: 0px;

}
.remove-img:focus {
    outline: none;
    box-shadow: none;
}
.players-wrapper .player .image-wrapper-large video {
    height: 410px;
    width: 100%;
    object-fit: cover;

    border-radius: 8px;
}
.players-wrapper .player .image-wrapper video {
    height: 300px;
    width: 100%;
    object-fit: cover;

    border-radius: 8px;
}
.players-wrapper .player .image-wrapper-small {
    height: 250px;
    width: 100%;
    margin-bottom: 21px;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #f8f8f8;
}
.players-wrapper .player .upload-image {
    height: 250px;
    width: 100%;
    margin-bottom: 21px;
    position: relative;
    background: #1E758D0D;
    border: 1px dashed #1E758D;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    gap: 12px;
}
.players-wrapper .player .upload-image .upload {
    width: 16px;
    height: 16px;
    object-fit: contain;
}
.players-wrapper .player .upload-image .title-small {
    color: #667085;
    font-size: 14px;
    font-weight: 400;
    margin: 0px;
    text-align: center;

}
.players-wrapper .player .upload-image .button {
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 14px;
    color: white;
    background-color: #1E758D;
}
.players-wrapper .player .upload-image input {
    position: absolute;
    width: 100% !important;
    height: 100% !important;
    left: 0px;
    top: 0px;
    z-index: 5;
    cursor: pointer;
    opacity: 0;
}



.players-wrapper .player .upload-image-large {
    height: 410px;
    width: 100%;
    margin-bottom: 21px;
    position: relative;
    background: #1E758D0D;
    border: 1px dashed #1E758D;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    gap: 12px;
}
.players-wrapper .player .upload-image-large .upload {
    width: 32px;
    height: 32px;
    object-fit: contain;
}
.players-wrapper .player .upload-image-large .title-small {
    color: #667085;
    font-size: 16px;
    font-weight: 400;
    margin: 0px;
    text-align: center;

}
.players-wrapper .player .upload-image-large .button {
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 14px;
    color: white;
    background-color: #1E758D;
}
.players-wrapper .player .upload-image-large input {
    position: absolute;
    width: 100% !important;
    height: 100% !important;
    left: 0px;
    top: 0px;
    z-index: 5;
    cursor: pointer;
    opacity: 0;
}
.players-wrapper .player .image-wrapper img,.players-wrapper .player .image-wrapper-small img,.players-wrapper .player .image-wrapper-large img {
    width: 100%;
    height: 100%;
    object-fit: contain;

    border-radius: 8px;
}
.players-wrapper .player .image-wrapper iframe,.players-wrapper .player .image-wrapper-small iframe,.players-wrapper .player .image-wrapper-large iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.players-wrapper .player .image-wrapper video,.players-wrapper .player .image-wrapper-small video,.players-wrapper .player .image-wrapper-large video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.players-wrapper .player .image-wrapper.rounded img {
    border-radius: 11px;
}
.players-wrapper .player .content .title {
    color: #333;
    font-family: Inter;
    font-size: 18px !important;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: left;
}
.players-wrapper .player .content .email {
    color: rgba(51, 51, 51, 0.4);
    font-family: Inter;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
    text-align: left;
}
.players-wrapper .player .content .text,.players-wrapper .player .content .text-med {
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-color);
    text-align: left;
    margin-bottom: 8px !important;
}
.players-wrapper .player .content .text-small {
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-color);
    text-align: left;
    margin-bottom: 8px !important;
}
.players-wrapper .player .buttons-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.players-wrapper .player .buttons-flex .button-light {
    height: 44px;
    border-radius: 8px;
    background-color: transparent;
    border: 1px solid #D80027;
    color: #D80027;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 49%;
    flex-basis: 49%;

}
.players-wrapper .player .buttons-flex .button-dark{
    height: 44px;
    border-radius: 8px;
    background-color: #1E758D;
    border: 1px solid #1E758D;
    color: #fff;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 49%;
    flex-basis: 49%;

}
.players-wrapper .player .buttons-flex .button-dark.full {
    max-width: 100%;
    flex-basis: 100%;
}
.button-green{
    height: 36px;
    border-radius: 8px;
    background: #33333380;
    font-weight: 400;
    border: none;
    color: #fff;
    padding: 8px;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;


}
.button-blue{

    gap: 8px;

    border-radius: 8px;
    background: #1E758D;
    font-weight: 600;
    border: none;
    color: #fff;
    padding: 8px 20px;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;


}
.ml-auto {
    margin-left: auto !important;
}
.players-wrapper .player .content .specs {
    margin-bottom: 24px;
    color: var(--text-color);
}
.players-wrapper .player .content .specs ul {
    display: flex;
    list-style: none;
    margin: 0px;
    padding: 0px;
    gap: 12px;
    flex-wrap: wrap;
}
.players-wrapper .player .content .specs ul li {
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-color);
    text-align: left;
    position: relative;
}
.players-wrapper .player .content .specs ul li::before {
    content: "|";
    position: absolute;
    right: -8px;
    color: var(--text-color);
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
}
.players-wrapper .player .content .specs ul li:last-child::before {
    content: none;
}
.players-wrapper .player .content .social-links {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}
.players-wrapper .player .content .social-links img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}
.players-wrapper .player .content .social-links img[src*="twitter.png"]{
    width: 18px;
}
.input-relative {
    position: relative;
    height: 50px;
}
.input-relative .input {
    width: 100%;
    height: 50px;
    border-radius: 8px;
    padding: 10px 14px;
    border: 1px solid #D0D5DD;
    padding-left: 48px;
    box-shadow: 0px 1px 2px 0px #1018280D;
    font-size: 14px;
    color: #667085;

}
.input-relative img {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    object-fit: contain;
    height: 20px;
    width: auto;
}
.mobile-icons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0px;
    gap: 16px;
    padding-right: 40px;
}
.left-icon {

    height: 28px;
    width: 28px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.left-icon img {
    width: 20px;
    height: auto;
    object-fit: contain;
}
.right-icon {

    height: 28px;
    width: 28px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.right-icon img {
    width: 20px;
    height: auto;
    object-fit: contain;
}
.filter_wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}
.club-profile-detail .tag {
    background-color: rgba(255, 215, 111, 0.3);
    font-size: 14px;
    font-weight: 500;
    color: rgba(30, 117, 141, 1);
    padding: 4px 12px;
    border-radius: 67px;
    margin-bottom: 16px;
    width: max-content;
}
.club-profile-detail .profile {
    width: 200px;
    height: 200px;
    /* border-radius: 50%; */
    /* border: 1px solid rgba(30, 117, 141, 1); */
    display: flex;
    justify-content: center;
    /* overflow: hidden; */
    align-items: center;
    margin-bottom: 16px;
}
.club-profile-detail .profile img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
.club-profile-detail .title {
    font-size: 32px;
    color: var(--title-color);
    margin-bottom: 8px;
    font-weight: 600;
}
.club-profile-detail .text-green {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.5;
    margin-bottom: 12px !important;
}
.club-profile-detail .location {
    display: flex;
    align-items: flex-start;
    font-size: 20px;
    color: var(--text-color);
    margin-bottom: 16px;
    gap: 8px;
}
.club-profile-detail .location svg {
    flex-shrink: 0;
    width: 20px;
    height: auto;
    margin-top: 3px;
}
.club-profile-detail .social-links {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px !important;
}
.club-profile-detail .social-links img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}
.club-profile-detail .social-links img.rounded-flag {
    border-radius: 50%;
    object-fit: cover;
     width: 24px;
    height: 24px;
}
.btn.btn-dark {
    font-size: 14px;
    text-transform: inherit;
}
.close-modal-icon {
    cursor: pointer;
    position: absolute;

    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 50%;
}
@media(max-width:1600px)  {
    .club-profile-detail .profile {
        height: 150px;
        width: 150px;
    }
    .club-profile-detail .location {
        font-size: 16px;
    }
    .club-profile-detail .location svg {
        width: 16px;
    }
    .club-profile-detail .text-green {
        font-size: 16px;
    }
    .club-profile-detail .title {
        font-size: 28px;
    }
}
@media(max-width:1024px)  {
    .club-profile-detail .location {
        font-size: 14px;
    }
    .club-profile-detail .text-green {
        font-size: 14px;
    }
    .club-profile-detail .profile {
        height: 100px;
        width: 100px;
    }
    .club-profile-detail .title {
        font-size: 32px;
    }
}
@media(min-width:1024px) {
 .left-icon {
    display: none;
 }
 .close-side-icon {
    display: none;
 }
 .right-icon {
    display: none;
 }
 .close-side-iconr {
    display: none;
 }
}

@media(max-width:1024px){

    .mobile-icons {
        margin-bottom: 16px;
    }
    .close-side-icon {
        display: block;
        position: absolute;
        right: 16px;
        top: 16px;
        height: 24px;
    width: 24px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
     }
     .close-side-icon img {
        width: 16px;
        height: 16px;
        object-fit: contain;
     }
     .close-side-iconr {
        display: block;
        position: absolute;
        right: 16px;
        top: 16px;
        height: 24px;
    width: 24px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
     }
     .close-side-iconr img {
        width: 16px;
        height: 16px;
        object-fit: contain;
     }
    .left-icon,.right-icon {
        display: flex;
     }
    .admin-dashboard {
        overflow-y: auto;
    }
    .main-dashboard .center-content,.main-dashboard .center-content.full,.center-content.full {
        width: calc(100%) !important;
    }
    .admin-dashboard .left-side,.left-side{
        width: 96%;
        max-width: 340px;
        position: relative;
        border-right: 1px solid #3333334d;
        position: fixed !important;
        background: white;
        z-index: 99999;
        left: 0px;
        top: 0px;
        display: none;
    }
    .main-dashboard .right-side,.right-side {
        width: 96%;
        max-width: 340px;
        position: relative;
        border-right: 1px solid #3333334d;
        position: fixed !important;
        background: white;
        z-index: 99999;
        right: 0px;
        top: 0px;
        height: 100%;
        overflow-y: auto;
        display: none;
    }
    .admin-dashboard .left-side::before {
        position: absolute;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        left: 0px;
        top: 0px;

        content: "";
    }
    .main-dashboard .center-content .main-title {
        font-size: 20px;
    }
    .top-flex {
        flex-wrap: wrap;

    }
    .theme-color {
        font-size: 12px;
        padding: 4px 8px;
    }
    .main-dashboard .center-content .text-top {
        font-size: 13px;
        margin-bottom: 16px;
    }
    .stickyColumn {
        position: relative !important;
    }

}
.flex-custom {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.flex-custom .title-small {
    font-size: 16px;
    margin-bottom: 0px;
}
@media(max-width:768px){
    .players-wrapper .player .upload-image-large {
        height: 300px;
    }
    .players-wrapper .player .upload-image-large .title-small {
        font-size: 14px;
    }
    .flex-custom .title-small {
        font-size: 14px;
    }
    .mobile-icons {
        padding-right: 24px !important;
    }
    .main-dashboard .short-list-wrapper .short-list-item .view-list {
        font-size: 13px;
    }
    .support-left-container .chat-wrapper .header {
        height: 44px !important;
        padding: 12px 24px !important;
    }
    .support-left-container .chat-wrapper .header .name {
        font-size: 18px !important;
    }
    .button-blue , .create-button{
        font-size: 12px;
    }
    .support-left-container .chat-wrapper .messages-wrapper .sent {
        padding: 8px 16px !important;
        font-size: 12px !important;
    }
    .support-left-container .chat-wrapper .chat-box input {
        font-size: 12px !important;
    }
    .inner .subscription-button,.inner .profile-edit-button ,.inner .profile-view-button{
        font-size: 12px;
        padding: 6px 12px;
        height: 36px;
    }
    .main-dashboard .right-side .inner .profile {
        height: 64px;
        width: 64px;
    }
    .players-wrapper .player .buttons-flex .button-light {
        font-size: 13px;
    }
    .main-dashboard .right-side .inner .intro .name {
        font-size: 16px;
    }
    .main-dashboard .right-side .inner .info {
        flex-wrap: wrap;
    }
    .main-dashboard .right-side .inner .info span {
        font-size: 12px;
    }
    .main-dashboard .right-side .inner .edit-button,.main-dashboard .right-side .inner .view-button {
        font-size: 12px;
        padding: 6px 12px;
    }
    .profile-switch {
        height: 40px;
    }
    .main-dashboard .coach-info .subtitle {
        font-size: 14px;
    }
    .main-dashboard .coach-info .tag-wrapper {
        margin-bottom: 16px;
    }
    .main-dashboard .coach-info .tag {
        font-size: 11px;
        padding: 4px 8px;
    }
    .main-dashboard .coach-info .title {
        font-size: 16px;
    }
    .main-dashboard .coach-info .history-item .data .text-large {
        font-size: 14px;
    }
    .main-dashboard .center-content .text{
        font-size: 14px;
    }
    .main-dashboard .center-content .main-title {
        font-size: 16px;
    }
    .players-wrapper .player .image-wrapper{
        height: 200px;
    }
    .players-wrapper .player .content .title {
        font-size: 16px;
    }
    .players-wrapper .player .content .text {
        font-size: 14px;
    }
    .players-wrapper .player .content .specs ul li {
        font-size: 12px;
    }
    .main-dashboard .right-side .inner .intro {
        font-size: 12px;
    }
    .player-traits-item .left {
        font-size: 13px;
        flex-shrink: 0;
    }
    .main-dashboard .coach-info .text {
        font-size: 13px;
    }
    .player-traits-item .right {
        font-size: 12px;
    }
    .main-dashboard .short-list-wrapper .short-list-item .actions {
        margin-bottom: 8px;
    }
    .main-dashboard .short-list-wrapper .short-list-item .actions img {
        width: 16px;
        height: auto;
    }
}
