.athlete-image {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
}

a.img-link:hover .athlete-image {
    webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.athlete-name {
    font-size: 24px !important;
    margin-top: 15px;
}

.athlete-name a {
    color: #1a1b1f !important;
}

img.img-fluid.athlete-image {
    height: 300px;
    object-fit: cover;
}

.search-athlete input {
    height: 50px;
    border-radius: 10px;
    background-color: #fff;
    margin-bottom: 0;
    border-color: #1a1b1f !important;
    padding-right: 30px;
    color: #1a1b1f !important;
    font-size: 16px;
}

.search-athlete .bi-search::before {
    color: #1a1b1f !important;
}

.search-athlete input:active {
    border-color: #1a1b1f !important;
}

.search-athlete-form .bi-search {
    position: absolute;
    right: 12px;
    top: 14px;
}

.search-athlete-widget-wrapper {
    display: flex;
    gap: 15px;
    justify-content: end;
}

select.select-sport {
    border-radius: 10px;
    padding: 6px 10px;
    border: 1px solid #1a1b1f;
}

.custom-select {
    position: relative;
    width: 100%;
    max-width: 250px;
}

.select-box {
    background: white;
    padding: 12px 12px;
    border-radius: 10px;
    border: 1px solid #1a1d1f;
    cursor: pointer;
    font-size: 16px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.options-container {
    position: absolute;
    width: 100%;
    background: white;
    border-radius: 10px;
    display: none;
    z-index: 2;
    margin-top: 10px;
    box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.1);
    padding: 15px 20px
}

.options-inner-container {
    max-height: 300px;
    overflow-y: scroll;
}

.options-inner-container::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #ffffff;
}

.options-inner-container::-webkit-scrollbar {
    width: 8px;
    background-color: #ffffff;
}

.options-inner-container::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #555;
}

.option {
    transition: all 0.3s ease;
    padding: 5px 0;
    cursor: pointer;
}

.option:hover {
    font-weight: 600;
}

.arrow {
    transition: transform 0.3s ease;
    display: flex;
}

@media (max-width: 768px) {
    .custom-select {
        max-width: 100%;
    }
}

span.arrow::before {
    position: absolute;
    content: "\e313";
    font-size: 18px;
    top: 50%;
    right: 10px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: 'icomoon';
}

@media screen and (max-width: 767px) {
    img.img-fluid.athlete-image {
        height: 100%;
    }

    .athlete-master-wrapper {
        gap: 30px;
        margin-top: 30px !important;
    }
}

@media screen and (max-width: 500px) {
    .search-athlete-widget-wrapper {
        flex-direction: column;
        gap: 10px;
    }
}

.search-athlete-form.search-athlete.d-inline-block {
    max-width: 300px;
}

.search-athlete-widget-wrapper {
    display: flex;
    gap: 15px;
    justify-content: space-between !important;
    align-items: center;
}
.search-inputs {
    display: flex;
    gap: 10px;
    width: 100%;
}
.title {
    width: 100%
}
.title h1.mb-0 {
    font-size: 24px;
    font-weight: bold;
    color: #d70000;
}
@media screen and (max-width: 500px) {
    .search-inputs {
        flex-direction: column;
        gap: 10px;
    }

    .search-athlete-form.search-athlete.d-inline-block {
        max-width: 100%;
    }
}
