:root {
    --light-red: #5DA4BA;
    --light-gray2: #F2F2F2;
    --light-gray5: #F5F5F5;
    --dark-gray6: #C9CDD1;
    --light-gray8: #808080;
    --light-gray9: #909090;
    --dark-gray66: #667085;
    --light-gray7: #71717A;
    --light-skyblue: #9AA6AC;
    --light-zink: #5BB2CC;
    --black: #262626;
    --wight: #fff
}

body {
    margin: 0;
    box-sizing: border-box;
    padding: 0;
    font-family: "Poppins", sans-serif;
}


.mainSidebar {
    height: 100vh;
    position: fixed;
    width: 17%;
    background-color: #404040;
}


.active-link {
    border-left: 3px solid var(--light-red);
    color: var(--light-red) !important;
}


.sidebar .nav-link {
    padding: 14px 0px;
    border-radius: unset;
    /* position: relative; */
}

/* 
.sidebar .nav-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background-color: var(--light-red);
}

.sidebar .nav-link:hover::before {
    height: 100%;
} */

.sidebar .nav-link:hover {
    color: var(--light-red) !important;
}

.sidebarGrid {
    padding-left: unset;
    padding-right: unset;
}

.mainBody {
    padding: 20px;
}

.header {
    display: flex;
    justify-content: space-between;
    padding: 8px 0px;
    align-items: center;
}

.page-title span {
    padding-left: 20px;
    font-size: 24px;
    font-weight: 600;
}

.header .icon {
    height: 48px;
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-gray2);
    cursor: pointer;
}

.header .search {
    display: flex;
    width: 20rem;
}

.header .search input {
    width: 100%;
}

.header .field {
    padding: 10px 10px 10px 0px;
    border: unset;
    outline: none;
    background-color: var(--light-gray2);
}

.header .right {
    display: flex;
    gap: 10px;
}

.right .dropdownMenu {
    border: unset;
    border-radius: unset;
    box-shadow: 0px 5px 8px rgba(0, 0, 0, 10%)
}

.right .dropdownMenu .dropdown-item:active {
    background-color: var(--light-gray2) !important;
    color: var(--black) !important;
}

.filterBox .searchField input {
    padding: 10px;
    outline: none;
    border: unset;
    width: 100%;
}


.filterBox .fields input {
    width: 50%;
    margin-right: 4%;
    margin-bottom: 5px;
    padding: 5px;
    border: unset;
    outline: none;
}

.filterBox .searchField input,
.filterBox .fields input::placeholder {
    color: var(--light-skyblue);
    font-size: 14px;
}

.filterBox .fields input:last-child {
    margin-right: 0;
}

.filterBox .filedLabel,
.filterBox .filterBox {
    font-weight: bold;
    font-size: 14px;
    color: #303030;
}

.clear {
    font-size: 12px;
    color: var(--light-gray8);
    cursor: pointer;
    float: right;
}

.clear:hover {
    color: var(--light-red);
}

.player-card {
    background-color: var(--wight);
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 10%);
    overflow: hidden;
    padding: 15px;
    margin-bottom: 20px;
}

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

.player-card .category {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.playerText {
    font-size: 14px;
    color: var(--light-gray9);
}

.social-icons .action {
    background-color: var(--light-red);
    color: #fff;
    border-radius: unset;
    padding: 5px 10px;
    font-size: 14px;
}

.player-card .social-icons img {
    width: 25px;
    height: 25px;
}

.filter .form-check .form-check-input {
    border-radius: unset !important;
    background-color: var(--light-gray5);
}

.filter .form-check-input:checked {
    background-color: var(--light-red);
    border-color: var(--light-red);
}

.filter .form-check-input:focus {
    border-color: var(--light-red);
    outline: 0;
    box-shadow: unset !important;
}

.accordion-body {
    background-color: var(--light-gray5);
    padding: 10px 0px 0px;
}

.accordion-body .list-unstyled {
    margin-bottom: unset;
}

.accordion-button {
    background-color: var(--light-gray5) !important;
    border: unset;
    padding: 0;
    outline: none !important;
}

.accordion-item {
    border: unset !important;
}

.accordion-button:not(.collapsed) {
    box-shadow: none !important;
}

.accordion-button:focus {
    box-shadow: none !important;
}

/* position Search in player side */
.player-position-card .table tbody tr th,
.player-position-card .table tbody tr td {
    padding-bottom: 3px !important;
    padding-top: 3px !important;
}

.coachInfo img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.coachView .table tbody tr td,
.coachView .table tbody tr th {
    padding: 4px 0px !important;
}

.tabelDetail table tbody tr td {
    padding-top: 20px;
    padding-bottom: 20px;
}

.tabelDetail table {
    vertical-align: middle;
}

.tabelDetail table th {
    background-color: var(--light-gray5);
    font-weight: 300;
    color: var(--dark-gray66);
    border-bottom: unset;
}

.tabelDetail table tbody tr td {
    color: var(--dark-gray66);
}

/* auth page */

.p-unset {
    padding-left: unset;
    padding-right: unset;
}

.form-title p {
    color: var(--light-gray7);
}

.form-title h4 {
    font-weight: 700;
    color: var(--black);
    font-size: 30px;
    font-weight: 700;
}

.bg-black {
    background-color: #262626 !important;
    height: 100vh;
    max-width: 65%;
}

.imageGrid {
    position: relative;
}

.imageBox {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 41vw;
    width: 52vw;
    object-fit: contain;
}

.imageBox img {
    width: 100%;
    height: 100%;
}

.formSection {
    width: 65%;
    margin-left: 30px;
}

.form-fields .field {
    width: 100%;
    padding: 12px 10px;
    background-color: var(--light-gray2);
    outline: unset;
    border: unset;
}

.form-fields .field::placeholder {
    color: var(--light-gray9);
    opacity: 50%;
    font-size: 14px;
}

.form-fields .field:focus {
    box-shadow: unset;
}

.passwordField {
    position: relative;
}

.passwordField img {
    position: absolute;
    right: 15px;
    top: 14px;
    width: 25px;
    height: 25px;
    cursor: pointer;
}

.formSection .form-check .form-check-input {
    background-color: var(--light-gray5);
}

.formSection .form-check-input:checked {
    background-color: var(--light-red);
    border-color: var(--light-red);
}

.formSection .form-check-input:focus {
    border-color: var(--light-red);
    outline: 0;
    box-shadow: unset !important;
}

.formSection label {
    color: var(--light-gray7);
}

.info-text {
    color: var(--light-gray7);
    font-size: 16px;
    text-align: center;
    padding-top: 10px;
}

.info-text a {
    text-decoration: none;
    color: var(--light-zink);
    font-size: 16px;
    font-weight: 500;
}

.checkOpetion {
    display: flex;
    /* align-items: center; */
    justify-content: space-between;
    font-size: 15px;
}

.checkOpetion a {
    color: var(--light-zink);
    font-weight: 500;
    text-decoration: none;
}

/* userProfile page */

.status img {
    height: 31.1px;
    width: 32px;
}

.profileBox {
    width: 160px;
    height: 160px;
}

.profileBox img {
    width: 100%;
    height: 100%;
}

.custom-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #999;
    font-size: 16px;
}

/* coach  */
.coach-history {
    position: relative;
}

.coach-history::after {
    content: "";
    position: absolute;
    height: 100%;
    border: 1px solid var(--light-gray2);
    left: -30px;
    top: 0;
}

.profileUpload input::-webkit-file-upload-button {
    background-color: var(--light-zink);
}

.profileUpload input::-webkit-file-upload-button:hover {
    background-color: var(--light-zink) !important;
}

/* landing page */

.landing-bg-image {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(/backend/assets/img/background1.png);
    height: 50rem;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    /* background-position: center; */
    background-color: #26262650;
    background-blend-mode: overlay;
}

.ice_scout_header .border_bottom {
    border-bottom: 1px solid var(--light-gray2);
    z-index: 1;
}

.header_buttons {
    position: relative;
    z-index: 1;
}

.player_image {
    position: relative;
    z-index: 1;
    top: 15px;
}

.player_image img {
    width: 33vw;
    height: 69vw;
}


.iceScout_container {
    position: relative;
}

.text_bg_image {
    position: absolute;
    top: 0;
    right: 0;
    height: 50rem;
    width: 30%;
}

.textImage {
    background-image: url("/backend/assets/img/text_background.jpg");
    height: 100%;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.3;
}

.carouselBox {
    position: relative;
}

.carouselBox::after {
    content: "";
    position: absolute;
    bottom: -45px;
    left: 0;
    height: 50%;
    width: 30%;
    background-color: #5BB2CC;
    opacity: 50%;
    z-index: -1;
}

.carouselBox::before {
    content: "";
    position: absolute;
    top: 50px;
    right: 0;
    height: 50%;
    width: 33%;
    background-color: #5BB2CC;
    opacity: 50%;
    z-index: -1;
}

.carousel-slide-box {
    width: 90%;
    display: flex;
    justify-content: center;
    margin: 0px auto;
}

.carousel-slide-box .item {
    background-color: var(--black);
    color: #FFF;
    height: 19rem;
}

.carousel-slide-box .item .carousel-item-box {
    padding: 30px;
}

.carousel-slide-box .item .carousel-item-box .comma {
    width: 49px;
    height: 40px;
}

.voices-field-profile img {
    width: 48px !important;
    height: 48px;
    object-fit: contain;
}

.carousel-slide-box .owl-dots {
    text-align: center;
    margin-top: 30px;
}

.carousel-slide-box .owl-dots .owl-dot {
    background: var(--light-gray9);
    width: 15px;
    height: 2px;
    margin: 5px;
}

.carousel-slide-box .owl-dots .owl-dot.active {
    background: var(--light-zink);
}


.company {
    background-color: var(--black);
    padding: 10px 50px 10px 20px;
    position: relative;
    bottom: -122px;
    width: 49.2rem;
}

.company img {
    filter: grayscale(100%);
    transition: filter 0.3s ease;
    cursor: pointer;
}

.company img:hover {
    filter: none;
}

.news-display-box {
    position: relative;
    height: 30rem;
    width: 29vw;
    margin-left: -60px;
}

.news-display-box .news_image {
    height: 100%;
    width: 100%;
    object-fit: contain;
    filter: grayscale(50%) brightness(80%);
}

.news-display-box button {
    position: absolute;
    top: 20px;
    left: 30px;
    z-index: 1;
}


.latestEvent {
    position: relative;
}

.latestEvent .eventText {
    position: absolute;
    bottom: 0;
    padding: 20px;
}

.newsList {
    padding: 20px 60px 20px 20px;
}

.footerPlayer img {
    width: 100%;
    height: auto;
    z-index: 444;
    position: relative;
}

.latestNews {
    position: relative;
}

.latestNews::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 60%;
    background-color: var(--light-gray5);
    bottom: 0;
}

.subscribeField {
    flex-grow: 1;
    padding: 11px 10px;
    font-size: 16px;
    border: 1px solid var(--light-gray9);
    opacity: 50%;
    border-radius: 5px;
}

.Events {
    position: absolute;
    bottom: 0;
    padding: 30px;
}

.card-equal-height {
    display: flex;
    flex-direction: column;
    min-height: 280px;
    flex: 1;
}

.vedio_container iframe {
    margin-bottom: -6.9px;
}

/* about us page */
.aboutUs-bg-image {
    background-image: url("/backend/assets/img/about.jpeg");
    height: 80vh;
    width: 100%;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    background-color: #26262650;
    background-blend-mode: overlay;
}

.benefitText {
    background-color: var(--light-gray5);
    padding: 36px;
    opacity: 80%;
}

.about-section {
    height: 55vh;
}

.benefit-image-box {
    margin-top: -25%;
}

.benefits-section {
    margin-top: -7.5%;
}

/* selector css start */

.custom-select-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.Selected {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: unset !important;
    font-size: 14px;
    color: #90909083;
    position: relative;
}

.Selected:valid {
    color: black;
}

.Selected option {
    color: black;
    font-size: 14px;
}

.Selected option:hover {
    background-color: gray;
    color: white;
}

.Selected::-ms-expand {
    display: none;
}

.custom-icon {
    pointer-events: none;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

/* selector css end */

/* conman style  */
.fs-20 {
    font-size: 20px;
}

.fs-24 {
    font-size: 24px;
}

.fs-32 {
    font-size: 32px;
}

.fs-55 {
    font-size: 55px;
}

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

.fs-16 {
    font-size: 16px;
}

.fs-19 {
    font-size: 19px;
}

.fs-12 {
    font-size: 12px;
}

.fs-10 {
    font-size: 10px;
}

.fs-18 {
    font-size: 18px;
}

.fs-42 {
    font-size: 42px;
}

.fw-6 {
    font-weight: 600;
}

.fw-5 {
    font-weight: 500;
}

.justify-between {
    justify-content: space-between !important;
}

.w-85 {
    width: 85%;
}

.cursor-pointer {
    cursor: pointer;
}

.text-black {
    color: var(--black) !important;
}

.text-gray9 {
    color: var(--light-gray9) !important;
}

.text-gray66 {
    color: var(--dark-gray66) !important;
}

.text-gray7 {
    color: var(--light-gray7) !important;
}

.text-zink {
    color: var(--light-zink);
}

.bg-gray5 {
    background-color: var(--light-gray5);
}

.bg-gray9 {
    background-color: var(--light-gray9);
}

.bg_black_color {
    background-color: var(--black) !important;
}

.bg_gray5 {
    background-color: var(--light-gray5);
}

.bg_zink {
    background-color: var(--light-zink);
}

.box-shadow {
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 10%);
}

.g-10 {
    gap: 10px;
}

.gap_29 {
    gap: 29px;
}

.pr-20 {
    padding-right: 20px;
}

.pr-80 {
    padding-right: 80px !important;
}

.p-11 {
    padding: 11px;
}

.p-12 {
    padding: 12px !important;
}

.p-10 {
    padding: 10px;
}

.pb-11 {
    padding-bottom: 11px;
}

.pt_5 {
    padding-top: 5.5rem;
}

.pt_100 {
    padding-top: 100px;
}

.ml-2 {
    margin-left: 5px;
}

.p-20 {
    padding: 20px !important;
}

.px-80 {
    padding: 0px 80px;
}

.box-shadow {
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 10%);
}

.d_none {
    display: none !important;
}

.word-break {
    word-break: break-all;
}

/* buttons */
.btn_outline {
    padding: 3.5px 22.2px;
    font-size: 14px !important;
    border-color: var(--light-zink) !important;
    color: var(--light-zink) !important;
}

.btn_outline:hover,
.btn_outline:focus {
    border-color: var(--light-zink) !important;
    color: var(--light-zink) !important;
    background-color: unset !important;
}

.btn_contained {
    padding: 3.5px 22.2px;
    font-size: 14px;
    border-color: var(--light-zink);
    background-color: var(--light-zink);
    color: var(--wight) !important;
}

.btn_contained:hover,
.btn_contained:focus {
    background-color: var(--light-zink) !important;
    border-color: var(--light-zink) !important;
}

/* auth btn */
.auth-btn {
    background-color: var(--light-zink) !important;
    font-weight: 500;
}

.auth-btn:focus,
.auth-btn:hover {
    background-color: var(--light-zink) !important;
}

/* height 42px */
.custom_btn_42 {
    color: #FFFF !important;
    padding: 9.5px 28px;
    font-size: 14px;
}

.btn_bg_zink {
    background-color: var(--light-zink);
    border: unset;
}

.btn_bg_zink:hover,
.btn_bg_zink:active {
    background-color: var(--light-zink) !important;
}

.custom_outline-42_padding {
    padding: 9.5px 28px;
}

.custom_outline_42:hover,
.custom_outline_42:active {
    background-color: unset !important;
    color: #FFFF;
}

/* height 42px end */
.fixed-height-card {
    height: 150px;
}

.profileFiled {
    color: #90909079;
    font-size: 14px;
    padding: 13.5px 10px !important;
}

.profileFiled span {
    background-color: var(--dark-gray6);
    padding: 6px 8px;
    cursor: pointer;
    margin-right: 10px;
}

.profileFiled span img {
    margin-bottom: 4px;
}

.custom-modal-width {
    max-width: 500px;
}

/* media query */
/* media query */
@media screen and (min-width: 995px) and (max-width: 1095px) {
    .fixed-height-card {
        height: 170px;
    }
}

@media screen and (min-width: 768px) and (max-width: 884px) {

    .text_bg_image,
    .landing-bg-image {
        height: 75vh;
    }
}

@media screen and (min-width: 995px) and (max-width: 1230px) {
    .profilBox {
        flex-direction: column !important;
    }
}

@media (max-width: 1280px) {

    .experience .textBox {
        padding-top: 1rem !important;
    }

    .news-display-box {
        width: 31vw;
    }

    .profilBox h5 {
        font-size: 16px;
        font-weight: 600;
    }
}


@media (max-width: 1186px) {
    .social-icons .action {
        padding: 4px 6px;
        font-size: 11px;
    }

    .formSection {
        width: 80%;
        margin: 0px auto;
    }
}

@media (max-width:1198px) {
    .company {
        width: 41.3rem;
    }
}

@media (max-width: 1085px) {
    .player-card .category {
        justify-content: center;
        gap: 10px;
    }

    .player-card .social-icons img {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 1042px) {
    .coach-profile .buttons {
        flex-direction: column;
        gap: 10px !important;
    }

    .coach-profile .buttons button {
        width: 100%;
    }

    .coach-profile .coachUpdate {
        font-size: 14px;
        padding: 10px 10px 10px 10px !important;
        word-break: break-all;
    }
}

@media (max-width: 1040px) {
    .sidebar .logo img {
        width: 13vw;
    }

    .mainSidebar .nav-link {
        font-size: 12px;
    }

    .mainBody .header {
        padding: 5px 0px 15px 0px;
    }
}

@media (max-width: 996px) {
    .list-unstyled li {
        font-size: 12px;
    }

    .player-card {
        text-align: center;
    }

    .formSection .pr-80 {
        padding-right: 20px !important;
    }

    .coach-history::after {
        display: none;
    }
}

@media (max-width: 992px) {
    .news-display-box {
        width: unset;
        margin-left: unset;
        margin: 20px 0px 0px 0px;
        height: auto;
    }

    .latestNews {
        padding-top: 40px !important;
        margin-top: unset !important;
    }

    .landing_text h1 {
        font-size: 42px;
    }

    .company {
        position: unset;
        width: 100%;
        margin-top: 50px;
    }

    .company img {
        width: 40px;
    }

    .subscribeField_box form {
        padding-bottom: 30px;
    }

    .player-position-card {
        border-right: unset !important;
    }

    .benefit-image-box img {
        display: none;
    }
}

@media (max-width: 897px) {
    .imageBox {
        height: 49vw;
        width: 52vw;
    }

    .header .search {
        width: unset;
    }

    .coach-profile .coachUpdate {
        font-size: 10px !important;
    }

    .company .sponsorLogo img {
        width: 40px;
    }

    .landing_text h1 {
        font-size: 42px;
    }

    .text_bg_image {
        width: 40%;
    }

}

@media (max-width: 850px) {
    .filterBox .fields {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .filterBox .fields input {
        width: 100%;
    }

    .player_image {
        left: 0;
    }

    .newsList {
        padding: 20px;
    }

    .profilBox {
        flex-direction: column !important;
    }

    .profilBox h5 {
        text-align: center;
        font-size: 19px;
        flex-direction: column !important;
    }
}



@media (max-width: 768px) {
    .mainSidebar {
        position: fixed;
        width: 20%;
        height: 100vh;
    }

    .social-icons {
        justify-content: center;
        gap: 20px;
    }

    .formSection {
        padding-top: 30px;
        width: 60%;
        margin: 0px auto;
    }

    .imageGrid {
        display: none;
    }

    .coachRanking {
        padding-top: 20px;
    }

    .coach-profile .buttons button {
        width: 100%;
    }

    .company {
        display: none;
    }

    .landing_text h1 {
        font-size: 33px;
    }

    .text_bg_image .textImage {
        display: none;
    }

    .player_image img {
        display: none;
    }

    .news-display-box {
        width: 100%;
    }

    .vedio_container iframe {
        height: 400px;
    }

    .webDetail {
        width: 100% !important;
        padding: 0px 20px
    }
}

@media (max-width: 767px) {
    .mainSidebar {
        position: unset;
        width: 100%;
        height: 85vh;
    }

    .news-display-box .news_image {
        width: 100%;
        height: auto;
    }

    .footerPlayer img {
        display: none;
    }

    .latestNews {
        margin-top: 35px;
    }

    .athlete .row {
        flex-direction: column-reverse !important;
    }
}

@media (max-width: 660px) {
    .mainBody .header {
        align-items: unset;
        flex-direction: column;
    }

    .coach-profile .buttons button {
        width: 50%;
    }

    .company {
        display: none;
    }

    .landing-bg-image {
        height: 100vh;
    }

    .text_bg_image {
        height: 100vh;
    }

}

@media (max-width: 500px) {
    .cards-content {
        padding-top: 20px;
    }

    .formSection {
        min-height: 100vh;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .ice_scout_header .icescout {
        display: none;
    }

    .carousel-slide-box .item {
        height: 23rem;
    }

    .carouselBox::before {
        width: 23%;
    }

    .subscribeField_box form {
        flex-wrap: wrap;
    }

    .webDetail {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
}

/* max width */
@media(min-width:1400px) {
    .player_image img {
        height: 67vw;
        width: 32vw;
    }

    .company {
        width: 57rem;
    }

    .carousel-slide-box .item {
        height: 17.3rem;
    }

    .news-display-box {
        height: 36.2rem;
        width: 34vw;
    }
}

@media(min-width:1450px) {
    .player_image img {
        height: 65vw;
        width: 33vw;
    }

    .news-display-box {
        width: 32.5vw;
    }
}

@media(min-width:1500px) {
    .player_image img {
        height: 61vw !important;
    }

    .news-display-box {
        width: 31vw;
    }
}

@media(min-width:1600px) {
    .player_image img {
        height: 58vw !important;
    }

    .news-display-box {
        width: 29.8vw;
    }
}

@media(min-width:1700px) {
    .player_image img {
        height: 56vw !important;
    }

    .news-display-box {
        width: 27.8vw;
    }
}

@media(min-width:1750px) {
    .player_image img {
        width: 27vw;
        height: 50vw !important;
    }

    .news-display-box {
        width: 27vw;
    }
}

@media(min-width:1800px) {
    .news-display-box {
        height: 35.4rem;
        width: 25vw;
    }
}