@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
body {
    font-family: "Raleway", sans-serif !important;
    margin: 0;
    padding: 0;
}
.create_session {
    background-image: url("/assets/images/session_images/create-bg.png");
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100vw;
    object-fit: cover;
}
.create_session .site_logo,
.session_section .header_div {
    padding-top: 19px;
    /* z-index: 9999; */
}
.create_session_form {
    height: calc(100vh - 81px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
}
.create_session_form img {
    margin-bottom: 68px;
}
.create_session_form p {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 82px;
    line-height: 28px;
    font-weight: 600;
}
.primary-btn {
    background-color: #ffffff77;
    border: 3px solid #ffffff;
    border-radius: 12px;
    color: #ffffff;
    font-size: 19px;
    font-weight: bold;
}
.primary-btn img {
    margin-right: 2px;
}
.secondary-btn {
    background-color: #d9021c;
    border: 3px solid #ffffff;
    border-radius: 12px;
    color: #ffffff;
    font-size: 19px;
    font-weight: bold;
}
.create_session_form button {
    width: 302px;
    height: 58px;
}
.create_session_form button img {
    margin-right: 5px;
    margin-bottom: 0;
}

/* peach page css start */
.session_section {
    background-image: url('../../assets/images/session_images/bg-grass.svg');
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100vw;
    /* object-fit: cover; */
    position: relative;
    overflow: hidden;
}
.session_name_input{
    width: fit-content;
}
.session_section .session_name_input input {
    border-radius: 12px;
    color: #ffffff;
    border: 3px solid #ffffff;
    background-color: #ffffff77;
    width: 440px;
    max-width: 100%;
}
.session_section .session_name_input input::placeholder {
    color: #ffffff;
    font-weight: 600;
}
.session_section .header_btn button {
    padding: 6px 30px;
}
.session_name_input img {
    position: absolute;
    right: 16px;
    top: 7px;
}
.peach_bg {
    /* position: absolute;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    opacity: 0.3;
    pointer-events: none;
    text-align: center; */
    position: absolute;
    opacity: 0.3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.peach_bg img{
    width: 100%;
}
.peach_cntnt {
    height: calc(100vh - 168px);
    padding: 30px 0 !important;
    position: relative;
}

/*  */
/* Custom horizontal collapse */
#collapseProject {
    position: absolute;
    top: auto;
    bottom: auto;
    left: 0;
    height: auto;
}
#collapseElements {
    position: absolute;
    top: auto;
    bottom: auto;
    right: 0;
    height: auto;
}
/* Container to wrap both button and collapsing panel */
/* Container to wrap both button and collapsing panel */
.collapse-wrapper {
    display: flex;
    align-items: center; /* Align button and content vertically */
    position: relative;
}

/* Custom class for horizontal collapsing */
.collapse-horizontal {
    width: 0;
    overflow: hidden;
    transition: width 0.35s ease;
}
.collapse-horizontal .card-body {
    background-color: #333333;
    border-radius: 15px;
    border-style: solid;
    border-color: #ffffff;
}
.collapse-horizontal#collapseProject .card-body {
    border-width: 5px 5px 5px 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.collapse-horizontal#collapseElements .card-body {
    border-width: 5px 0 5px 5px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.collapse-horizontal.collapse.show {
    width: 147px;
}

.collapse-wrapper button {
    transition: transform 0.35s ease;
    border: 0;
}

/* Move the button along with the collapse */
.projects_sidebar .collapse-wrapper button[aria-expanded="true"] {
    transform: translateX(143px); /* Match the width of the collapse */
}
.element_sidebar .collapse-wrapper button[aria-expanded="true"] {
    transform: translateX(-143px); /* Match the width of the collapse */
}
.collapse-wrapper .notcollapsed_project {
    display: none;
}
.collapse-wrapper button[aria-expanded="true"] > .notcollapsed_project {
    display: flex;
}
.collapse-wrapper button[aria-expanded="true"] > .collapsed_project {
    display: none;
}
.collapse-wrapper .btn-check:focus + .btn,
.collapse-wrapper .btn:focus {
    box-shadow: none;
}
.collapse-wrapper ul.main_tab {
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}
.collapse-wrapper ul.main_tab li button {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    background-color: #444444;
    border-radius: 15px;
    border: 0;
    color: #fff;
    font-size: 16px;
    line-height: 18px;
    font-weight: bold;
    width: 103px;
    height: 96px;
}
.collapse-wrapper ul.main_tab li button:hover,
.collapse-wrapper ul.main_tab li button:focus,
.collapse-wrapper ul.main_tab li button:active,
.collapse-wrapper .players_tab #textList li:hover,
.collapse-wrapper .players_tab #textList li:focus,
.collapse-wrapper .players_tab #textList li.active,
#drawTab #drawList li:hover,
#drawTab #drawList li:focus,
#drawTab #drawList li:active,
#drawTab #drawList li.active,
#animateTab li:hover,
#animateTab li:focus,
#animateTab li:active {
    color: #333333;
    background-color: #fff;
}
.collapse-wrapper ul hr {
    width: 100%;
    color: #fff;
}
.modal-content {
    background-color: #333333 !important;
    border: 5px solid #ffffff !important;
    border-radius: 15px !important;
    color: #fff;
    opacity: 0.97;
    box-shadow: 0px 23px 6px #00000027;
}
.modal-header {
    border-bottom: 0 !important;
}
.modal-footer {
    border-top: 0 !important;
}
.modal-header button {
    position: absolute;
    top: -25px;
    right: 40px;
    padding: 0;
    border: 0;
    background: transparent;
    border-radius: 50%;
}
.modal-title {
    font-family: "Anton", sans-serif;
    font-size: 41px;
}
.modal-footer button {
    margin: 0;
    width: 155px;
    height: 48px;
}
#close_session .modal-footer button, #delete_frame_modal .modal-footer button, #add_frame_modal .modal-footer button, #all_delete_frame_modal .modal-footer button {
    width: auto;
    height: auto;
    padding: 7px 20px;
}

#close_session .modal-footer, #delete_frame_modal .modal-footer, #add_frame_modal .modal-footer, #confirmTourModal .modal-footer, #all_delete_frame_modal .modal-footer{
    gap: 15px;
}
.collapse-wrapper ul li button:hover img,
.collapse-wrapper ul li button:focus img,
.collapse-wrapper ul li button:active img,
#drawTab #drawList li:hover img,
#drawTab #drawList li:focus img,
#drawTab #drawList li:active img,
#drawTab #drawList li.active img,
#animateTab li:hover img,
#animateTab li:focus img,
#animateTab li:active img {
    filter: invert(77%) sepia(17%) saturate(0%) hue-rotate(231deg)
        brightness(102%) contrast(92%);
}
#field_setting .modal-body img {
    width: 100%;
    height: 100%;
}
#field_setting .modal-body div {
    width: 32%;
    height: auto;
    background-image: url("/assets/images/session_images/bg-ground.png");
}
#field_setting .modal-body {
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.selected_pitch {
    border: 3px solid red;
}

.pitch-container {
    cursor: pointer;
    /* padding: 5px;
    margin: 5px; */
}

/* 21-10 */
.selected_field_section {
    width: auto !important;
    /* height: calc(100vh - 165px); */
    display: flex;
    align-items: center;
    justify-content: center;
}
.selected_field_section #main-peach-img {
    /* width: auto;
    height: calc(100vh - 240px);
    object-fit: contain;
    pointer-events: none; */

    width: auto;
    height: calc(100vh - 210px);
    object-fit: contain;
    pointer-events: none;
    margin-top: 0px;
}
.projects_sidebar {
    z-index: 1;
}
.players_tab h6 {
    font-size: 26px;
    font-family: "Anton", sans-serif;
    margin-top: 15px;
    text-transform: uppercase;
}
.players_tab .close_tab {
    position: absolute;
    top: -40px;
    right: 0px;
    padding: 0;
    border: 0;
    background: transparent;
    border-radius: 50%;
}
.players_tab .up_btn,
.players_tab .down_btn {
    border-radius: 15px;
    background-color: #444444;
    width: 100%;
    padding: 10px 0;
    box-shadow: none;
    border: 0;
}
.collapse-wrapper .players_tab ul.sub_tab li {
    background-color: #444444;
    border-radius: 15px;
    box-shadow: none;
    border: 0;
    padding: 5px;
}
.collapse-wrapper .players_tab ul.sub_tab li button {
    border: 3px solid #fff;
    border-radius: 50%;
    font-size: 24px;
    width: 39px;
    height: 39px;
}
.collapse-wrapper .players_tab ul.sub_tab {
    flex-direction: row;
    gap: 7px;
    flex-wrap: wrap;
    margin: 14px 0;
    display: flex;
    list-style: none;
    padding: 0;
    align-items: center;
    justify-content: center;
}
/* .collapse-wrapper .players_tab li.blue_team button {
    background-color: #006cff;
    color: #fff;
} */
/* .collapse-wrapper .players_tab li.yellow_team button {
    color: #333333;
    background-color: #fff503;
} */

/* 22-10 */
#playerList,
#itemsList {
    max-height: 443px; /* Adjust based on your design */
    overflow-y: hidden;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.players_tab {
    position: relative;
}

button.up_btn {
    margin-bottom: 10px;
}
button.down_btn {
    margin-top: 10px;
}
.collapse-horizontal.collapse.show .card {
    margin-top: 19px;
}
.team1 {
    color: #fff;
    background-color: #006cff;
    border: 3px solid #fff;
    border-radius: 50%;
    font-size: 16px !important;
    width: 100% !important;
    height: 100% !important;
    font-weight: bold;
    line-height: 30px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    padding-top: 2px;
    padding-bottom: 1px;
}

.team2 {
    color: #333333;
    background-color: #fff503;
    border: 3px solid #fff;
    border-radius: 50%;
    font-size: 16px !important;
    width: 100% !important;
    height: 100% !important;
    font-weight: bold;
    line-height: 30px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    padding-top: 2px;
    padding-bottom: 1px;
}
.footer_section {
    padding-right: 42px !important;
    gap: 30px;
}
.footer_section div {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}
.collapse-wrapper .players_tab li div {
    width: 39px;
    height: 39px;
    cursor: pointer;
    text-align: center;
}
.collapse-wrapper .players_tab#drawTab li img {
    width: 100% !important;
    height: auto !important;
}
#drawTab #drawList button,
#textTab #textList button {
    background-color: transparent;
    padding: 0;
    border: 0;
    width: 100%;
    height: 50px;
}
#drawTab #drawList button input,
#textTab #textList button input {
    width: 100%;
    height: 100%;
    border: 0;
    padding: 0;
    margin: 0;
    border-radius: 15px;
    cursor: pointer;
}
#drawTab #drawList .large_btn {
    height: 50px;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
#drawTab #drawList .small_btn {
    width: 50px;
    height: 53px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.disable {
    opacity: 0.5;
    pointer-events: none;
}

/* 23-10 */
.collapse-wrapper .players_tab #textList li.large_btn {
    width: 100%;
    text-align: center;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.collapse-wrapper .players_tab #textList li span {
    color: #fff;
    font-size: 19px;
}
.collapse-wrapper .players_tab #textList li:hover span,
.collapse-wrapper .players_tab #textList li:focus span,
.collapse-wrapper .players_tab #textList li.active span {
    color: #333333;
}
.element_sidebar .dropdown-toggle .fnt_lbl {
    font-size: 14px !important;
    font-weight: bold !important;
}
.element_sidebar .dropdown-toggle .fnt_value {
    font-size: 23px !important;
}
.collapse-wrapper #animateList .play_pause,
.collapse-wrapper #animateList .record_animation_video,
.collapse-wrapper #animateList .animate_stop {
    border-radius: 50%;
    height: 84px;
    width: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.collapse-wrapper #animateList .previous,
.collapse-wrapper #animateList .next {
    width: 47px;
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
}
.collapse-wrapper #animateList li.play_pause img,
.collapse-wrapper #animateList .record_animation_video img,
.collapse-wrapper #animateList li.animate_stop img {
    width: 50px;
    height: 50px;
}
.collapse-wrapper .players_tab#animateTab li.previous img,
.collapse-wrapper .players_tab#animateTab li.next img {
    width: 27px;
    height: 27px;
}
/* 24-10 */
#animateTab .animate_speed {
    color: #fff;
    font-size: 14px;
    width: 100%;
    padding: 6px 0;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
}
#animateTab .frame {
    width: 75%;
    height: 17px;
    border-radius: 15px;
    cursor: pointer;
}
#animateTab .frame_count,
#animateTab .frame_count:hover {
    background-color: transparent;
    color: #fff;
    font-size: 14px;
    padding: 0;
}
#animateTab .frame_list {
    max-height: 72px;
    overflow: auto;
    list-style: none;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 7px;
    flex-wrap: wrap;
    align-items: center;
}
#animateTab .frame_list::-webkit-scrollbar {
    width: 5px;
    border-radius: 5px;
}

#animateTab .frame_list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 5px;
}

#animateTab .frame_list::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}

#animateTab .frame_list::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.collapse-wrapper .players_tab ul#animateList {
    margin: 0;
}
#team_setting .team_details h6 {
    font-size: 23px;
    font-weight: 900;
}
#team_setting .team_details label {
    background-color: #444444;
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    border-radius: 15px;
    padding: 10px 20px;
}
#team_setting .team_details input[type="text"] {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 10px 17px;
    border: 0;
    color: #313531;
    font-size: 16px;
    font-weight: bold;
}
#team_setting .right_border {
    border-right: 1px solid #fff;
}
#team_setting .team_details input.colors {
    width: 100%;
    /* border-radius: 15px; */
    padding: 0;
    border: 1px solid #fff;
    height: 43px;
    cursor: pointer;
    border-radius: 0 !important;
}
#team_setting .team_details .team_style {
    background-color: #ffffff;
    border-radius: 15px;
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

#ball_style_team2_model{
    position: absolute;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 38px;
}

#ball_style_team1_model{
    position: absolute;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 38px;
}

.team1, .team2{
    color: black;
}

/* Team 1 Styles */
#team_setting .team_details .team_style .ball_style_team1,
.player.ball_style_team1 {
    color: #151515; /* Text color */
    font-weight: bold;
    font-size: 38px;
    border: 3px solid #fff; /* Border color */
    border-radius: 50%;
    background-color: #ffdc1c; /* Background color */
    width: 73px;
    height: 73px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    /* box-shadow: 0px 3px 29px 5px #00000027; */
}
/* Pseudo-elements for Team 1 Ball */
#team_setting .team_details .team_style .ball_style_team1:before,
.player.ball_style_team1:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 12px;
    top: auto;
    bottom: auto;
    left: 10px;
    background: var(--team1-second-color, #16b110); /* Second color */
    border-radius: 3px;
}
#team_setting .team_details .team_style .ball_style_team1:after,
.player.ball_style_team1::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 12px;
    top: auto;
    bottom: auto;
    right: 10px;
    background: var(--team1-second-color, #16b110); /* Second color */
    border-radius: 3px;
}
.player.ball_style_team1:before,
.player.ball_style_team2:before {
    width: 4px !important;
    left: 2px !important;
    /* z-index: -1; */
}
.player.ball_style_team1:after,
.player.ball_style_team2::after {
    width: 4px !important;
    right: 2px !important;
    /* z-index: -1; */
}
/* Team 2 Styles */
#team_setting .team_details .team_style .ball_style_team2,
.player.ball_style_team2 {
    color: #151515; /* Text color */
    font-weight: bold;
    font-size: 38px;
    border: 3px solid #fff; /* Border color */
    border-radius: 50%;
    background-color: #2c8ced; /* Background color */
    width: 73px;
    height: 73px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    /* box-shadow: 0px 3px 29px 5px #00000027; */
}
/* Pseudo-elements for Team 2 Ball */
#team_setting .team_details .team_style .ball_style_team2:before,
.player.ball_style_team2::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 12px;
    top: auto;
    bottom: auto;
    left: 10px;
    background: var(--team2-second-color, #1e1984); /* Second color */
    border-radius: 3px;
}
#team_setting .team_details .team_style .ball_style_team2:after,
.player.ball_style_team2::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 12px;
    top: auto;
    bottom: auto;
    right: 10px;
    background: var(--team2-second-color, #1e1984); /* Second color */
    border-radius: 3px;
}
#team_setting .team_details .team_style button {
    background-color: transparent;
    border: 0;
    padding: 0;
    border-radius: 50%;
    position: absolute;
    bottom: 5px;
    right: 5px;
}
#team_setting .team_details input:focus {
    box-shadow: none;
}
.selected_field_section img#item46[draggable="true"],
.selected_field_section img#item47[draggable="true"],
.selected_field_section img#item48[draggable="true"],
.selected_field_section img#item49[draggable="true"],
.selected_field_section img#item50[draggable="true"]{
    transform: none;
}
.selected_field_section img#item1[draggable="true"],
.selected_field_section img#item2[draggable="true"],
.selected_field_section img#item3[draggable="true"],
.selected_field_section img#item4[draggable="true"] {
    transform: none;
}
.selected_field_section img#item17[draggable="true"],
.selected_field_section img#item18[draggable="true"],
.selected_field_section img#item19[draggable="true"],
.selected_field_section img[draggable="true"] {
    transform: none;
}
.selected_field_section img#item9[draggable="true"],
.selected_field_section img#item10[draggable="true"] {
    transform: none;
}
.selected_field_section img#item5[draggable="true"],
.selected_field_section img#item6[draggable="true"],
.selected_field_section img#item27[draggable="true"],
.selected_field_section img#item28[draggable="true"],
.selected_field_section img#item32[draggable="true"],
.selected_field_section img#item33[draggable="true"],
.selected_field_section img#item29[draggable="true"],
.selected_field_section img#item30[draggable="true"],
.selected_field_section img#item41[draggable="true"],
.selected_field_section img#item42[draggable="true"] {
    transform: none;
}
.selected_field_section img#item38[draggable="true"],
.selected_field_section img#item39[draggable="true"],
.selected_field_section img#item40[draggable="true"],
.selected_field_section img#item51[draggable="true"] {
    transform: none;
}
.selected_field_section img#item43[draggable="true"],
.selected_field_section img#item44[draggable="true"],
.selected_field_section img#item45[draggable="true"] {
    transform: none;
}

.selected_field_section img#item31[draggable="true"] {
    transform: none;
}
.selected_field_section img#item26[draggable="true"] {
    transform: none;
}

#drawing-canvas {
    /* position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: 100%;
    z-index: 10;  */

    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    z-index: 10;
    margin: 0 auto;
    text-align: center;
}

#drawtab-canvas{
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: 100%;
    z-index: 10;
}
.canvas-disabled {
    pointer-events: none; /* Disable pointer events */
}

/* 25-10 */
.selected_field_section .text-box:focus-visible,
#textTab .dropdown .dropdown-item,
#animateTab .dropdown .dropdown-item {
    outline: 0;
}
.element_sidebar
    .collapse-wrapper
    button.dropdown-toggle[aria-expanded="true"] {
    transform: none;
}
.element_sidebar .collapse-wrapper button.dropdown-toggle {
    width: 100%;
    text-align: center;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background-color: #444444;
    border-radius: 15px;
    box-shadow: none;
    border: 0;
    padding: 5px;
}
#textTab .dropdown .dropdown-item,
#animateTab .dropdown .dropdown-item {
    font-weight: bold;
    color: #fff;
}
#textTab .dropdown .dropdown-menu,
#animateTab .dropdown .dropdown-menu {
    border-radius: 15px;
    background: #444444;
    border: 0;
    max-height: 240px;
    overflow: auto;
    width: 112px;
    min-width: auto;
}
#textTab .dropdown .dropdown-menu::-webkit-scrollbar,
#animateTab .dropdown .dropdown-menu::-webkit-scrollbar,
.team_style_main .dropdown-menu::-webkit-scrollbar {
    width: 7px;
    border-radius: 15px;
}
#textTab .dropdown .dropdown-menu::-webkit-scrollbar-track,
#animateTab .dropdown .dropdown-menu::-webkit-scrollbar-track,
.team_style_main .dropdown-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 15px;
}

#textTab .dropdown .dropdown-menu::-webkit-scrollbar-thumb,
#animateTab .dropdown .dropdown-menu::-webkit-scrollbar-thumb,
.team_style_main .dropdown-menu::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 15px;
}

#textTab .dropdown .dropdown-menu::-webkit-scrollbar-thumb:hover,
#animateTab .dropdown .dropdown-menu::-webkit-scrollbar-thumb:hover,
.team_style_main .dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: #555;
}
#textTab .dropdown li:hover,
#animateTab .dropdown li:hover {
    background-color: #fff;
}
#textTab .dropdown li:hover .dropdown-item,
#animateTab .dropdown li:hover .dropdown-item {
    color: #333333;
    background-color: transparent;
}
.collapse-wrapper .players_tab ul.sub_tab#textList {
    margin-top: 7px;
}

/* 28-10 */
button.team1,
button.team2 {
    font-family: "Nunito Sans", serif !important;
    font-weight: 900 !important;
}
#textTab .dropdown .dropdown-item.active,
#textTab .dropdown .dropdown-item:active,
#textTab .dropdown .dropdown-item:focus,
#animateTab .dropdown .dropdown-item:active,
#animateTab .dropdown .dropdown-item.active,
#animateTab .dropdown .dropdown-item:focus {
    background-color: #444444;
}

/* 6-11 */
.selected_field_section .team1,
.selected_field_section .team2 {
    /* height: 38px !important; */
}

/* 28-11 */
.selected_field_section.second_field #main-peach-img, .selected_field_section.second_field{
    /* height: calc(100vh - 170px); */
    /* margin-top: 35px; */
}

/* 4-12 */
#animateTab .dropdown .dropdown-menu li{
    border-radius: 0;
    font-size: 14px;
    padding: 0;
}
#animateTab .dropdown .dropdown-item{
    font-weight: normal;
}

/* 11-12 */
.selected_field_section.third_field #main-peach-img, .selected_field_section.third_field{
    /* height: calc(100vh - 180px) !important; */
    /* margin-bottom: 30px; */
    /* margin-bottom: 45px !important;
    margin-top: 15px !important; */
}

.selected_field_section.fourth_field #main-peach-img, .selected_field_section.fourth_field{
    /* height: calc(100vh - 180px) !important; */
    /* margin-top: 30px; */
}
.selected_field_section.blank_field #main-peach-img{
    opacity: 0.1;
    width: 100%;
    /* height: calc(100vh - 165px); */
    /* border: 10px solid #000; */
}

/* 27-12 */
.selected_field_section .item.box.active{
    cursor: grab;
}

/* 30-12 */
.resize-handler{
    background: transparent;
    border: transparent;
    background-size: 100%;
    background-repeat: no-repeat;
}

.resize-handler.rotate{
    background-image: url(/assets/images/session_images/rotate.svg);
    width: 14px;
    height: 14px;
    border-radius: 0;
}
.resize-handler.resize.left-top,.resize-handler.resize.left-bot,.resize-handler.resize.right-top,.resize-handler.resize.right-bot {
    background-color: #fff !important;
    border-radius: 100px;
    background-size: 8px;
    background-position: center;
    width: 12px;
    height: 12px;
}
.resize-handler.resize.left-top{
    top: -7px !important;
    left: -7px !important;
    background-image: url(/assets/images/session_images/resize4.svg);
}
.resize-handler.resize.left-bot{
    bottom: -10px !important;
    left: -7px !important;
    background-image: url(/assets/images/session_images/resize3.svg);
}
.resize-handler.resize.right-top{
    top: -7px !important;
    right: -7px !important;
    background-image: url(/assets/images/session_images/resize3.svg);
}
.resize-handler.resize.right-bot{
    bottom: -10px !important;
    right: -7px !important;
    background-image: url(/assets/images/session_images/resize4.svg);
}

/* 2-1-25 */
#playerList.sub_tab li img{
    width: 39px;
    height: 39px;
    border-radius: 50%;
}
.selected_field_section img.player{
    border-radius: 50%;
}
.txt_clr_picker span, .bg_clr_picker span{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    text-align: center;
}
.txt_clr_picker span{
    color: #fff;
}

/* 7-1-25 */
#playerList li button.blank_player{
    height: 39px !important;
    width: 39px !important;
}

#playerList li button.blank_player{
    height: 39px !important;
    width: 39px !important;
}

#playerList li button.update-style{
    height: 39px !important;
    width: 39px !important;
}

#playerList li button.team2{
    height: 39px !important;
    width: 39px !important;
}

/* 17-1-25 */
.player.team1.blak_shadow_player{
    position: relative;
    overflow: hidden;
}
/* .player.team1.blak_shadow_player::before {
    content: '';
    position: absolute;
    height: 15px;
    width: 100%;
    opacity: 0.16;
    top: 0;
    left: -4px;
    transform: rotate(-23deg);
} */

/* 27-1-25 */
.modal-body{
    /* max-height: 55vh; */
    max-height: 100vh;
    overflow: auto;
}

#team1player0, #team2player0{
    height: 38px !important;
}

/* 7-2-25 */
.last-tour-popup{
    max-width: 500px !important;
}

.selected_field_section #main-peach-img::selection, .peach_bg img::selection{
    background-color: transparent;
}

.selected_field_section #main-peach-img, .peach_bg img, #droppable-area{
    user-select: none; /* Disables selection */
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none;
}

@media (min-width: 2000px) {
    .selected_field_section #main-peach-img {
        height: auto;
    }
}
@media (min-width: 1921px) and (min-height: 1081px) {
    .session_section {
        background-image: url("/assets/images/session_images/bg-ground-2x.png");
    }
}
@media(max-width: 1600px) and (max-height: 1200px){
    .selected_field_section {
        /* height: calc(100vh - 320px); */
    }
}
@media (max-width: 1280px) or (max-height: 850px) {
    .collapse-wrapper #animateList .play_pause,
    .collapse-wrapper #animateList .record_animation_video,
    .collapse-wrapper #animateList .animate_stop {
        height: 64px;
        width: 64px;
    }
    .collapse-wrapper #animateList li.play_pause img,
    .collapse-wrapper #animateList .record_animation_video img,
    .collapse-wrapper #animateList li.animate_stop img,
    .collapse-wrapper #animateList .previous,
    .collapse-wrapper #animateList .next {
        width: 40px !important;
        height: 40px !important;
    }
    .collapse-wrapper .players_tab#animateTab li.previous img,
    .collapse-wrapper .players_tab#animateTab li.next img {
        width: 18px !important;
        height: 18px !important;
    }
    #animateList .add_frame img {
        width: 26px;
        height: 26px;
    }
    /* #animateTab .frame_list {
        max-height: 98px;
    } */
    #animateTab .frame {
        height: 14px;
    }
}
@media (min-height: 900px) {
    /* .collapse-horizontal {
        min-height: 685px;
    } */
    .collapse-horizontal.collapse.show .card {
        height: 100%;
        min-height: auto;
    }
}
@media (max-width: 991px) and (max-height: 1024px) {
    .collapse-wrapper .players_tab ul.sub_tab#playerList li button {
        font-size: 15px !important;
        height: 34px !important;
    }
    .selected_field_section .team1,
    .selected_field_section .team2 {
        font-size: 15px !important;
    }
    .collapse-wrapper ul.main_tab li button {
        font-size: 14px;
    }
    .selected_field_section img[draggable="true"],
    .selected_field_section img#item5[draggable="true"],
    .selected_field_section img#item6[draggable="true"],
    .selected_field_section img#item27[draggable="true"],
    .selected_field_section img#item28[draggable="true"],
    .selected_field_section img#item32[draggable="true"],
    .selected_field_section img#item33[draggable="true"],
    .selected_field_section img#item29[draggable="true"],
    .selected_field_section img#item30[draggable="true"],
    .selected_field_section img#item41[draggable="true"],
    .selected_field_section img#item42[draggable="true"],
    .selected_field_section img#item9[draggable="true"],
    .selected_field_section img#item10[draggable="true"],
    .selected_field_section img#item26[draggable="true"],
    .selected_field_section img#item31[draggable="true"],
    .selected_field_section img#item38[draggable="true"],
    .selected_field_section img#item39[draggable="true"],
    .selected_field_section img#item40[draggable="true"] {
        transform: none !important;
    }
    /* .session_section {
        height: calc(100vh - 33px) !important;
        overflow: hidden;
    } */
}
@media(max-height:900px){
    .selected_field_section {
        /* height: calc(100vh - 240px) !important; */
    }
    .selected_field_section.third_field #main-peach-img, .selected_field_section.fourth_field #main-peach-img,.selected_field_section.third_field,
    .selected_field_section.fourth_field {
        /* height: calc(100vh - 205px) !important; */
        margin-top: 0 !important;
    }
}

@media (max-height: 850px) {
    #playerList,
    #itemsList {
        max-height: 300px;
    }
    /* #collapseElements {
        max-height: 530px;
    } */
    .collapse-wrapper ul li button {
        gap: 5px;
        width: 80px;
        height: 75px;
    }
    .collapse-wrapper ul hr {
        margin: 0;
    }
    #drawTab #drawList .large_btn {
        height: 35px;
        padding: 0 20px;
    }
    .selected_field_section {
        /* height: calc(100vh - 175px) !important; */
        margin-top: 40px;
    }
    .selected_field_section.second_field #main-peach-img, .selected_field_section.second_field,
    .selected_field_section.third_field #main-peach-img, .selected_field_section.fourth_field #main-peach-img, .selected_field_section.third_field,
    .selected_field_section.fourth_field {
        /* height: calc(100vh - 144px) !important; */
        margin-top: 0;
    }
    .selected_field_section.blank_field{
        margin-top: 0 !important;
    }
}
@media (max-width: 1680px) {
    .selected_field_section {
        /* height: calc(100vh - 255px); */
    }
    /* .peach_bg img{
        width: 360px;
    } */
    .create_session .site_logo, .session_section .header_div {
        padding-top: 7px;
    }
}

@media(max-width: 1536px){
    .session_section .header_btn button {
        padding: 6px 20px;
    }
    .shepherd-enabled.shepherd-element{
        width: 18% !important;
        padding: 15px 10px 10px !important;
    }
    .shepherd-text{
        padding: 0 !important;
    }
    .shepherd-text ul{
        margin-bottom: 0 !important;
    }
    .last-tour-popup.shepherd-enabled.shepherd-element{
        width: 500px !important;
    }
    /* .selected_field_section #main-peach-img {
        width: auto;
        height: calc(100vh - 250px);
        margin-top: 0 !important;
    } */
}


@media (max-width: 1366px) {
    .selected_field_section #main-peach-img {
        width: auto;
        height: calc(100vh - 140px);
        object-fit: contain;
        pointer-events: none;
        margin-top: 0px;
    }
    .session_section{
        background-image: url(/assets/images/session_images/laptop-bg.svg);
    }
    .create_session_form img.create_session_logo{
        width: 240px;
        margin-bottom: 40px !important;
    }
    .create_session_form p{
        margin-bottom: 40px !important;
    }
    .collapse-horizontal.collapse.show {
        width: 102px;
    }
    .collapse-horizontal.collapse.show .card {
        padding: 5px;
    }
    .collapse-wrapper .players_tab ul.sub_tab {
        margin-bottom: 0;
    }
    .collapse-wrapper .players_tab ul.sub_tab#playerList li {
        padding: 0;
    }
    .collapse-wrapper .players_tab .sub_tab li button,
    .collapse-wrapper .players_tab .sub_tab li div {
        font-size: 14px !important;
        width: 30px !important;
        height: 30px !important;
    }
    .collapse-wrapper .players_tab .sub_tab#playerList li button,
    .collapse-wrapper .players_tab .sub_tab#playerList li img {
        width: 34px !important;
        height: 34px !important;
    }
    .players_tab h6 {
        font-size: 20px;
    }
    .players_tab .up_btn,
    .players_tab .down_btn {
        padding: 5px 0;
    }
    .element_sidebar .collapse-wrapper button[aria-expanded="true"] {
        transform: translateX(-96px);
    }
    .projects_sidebar .collapse-wrapper button[aria-expanded="true"] {
        transform: translateX(96px);
    }
    .collapse-wrapper ul.main_tab li button {
        width: 85px;
        height: 65px;
        padding: 0;
    }
    .players_tab .close_tab {
        width: 32px;
        height: 32px;
    }
    .players_tab .close_tab img {
        width: 100%;
    }
    #drawTab #drawList .small_btn {
        width: 35px;
        height: 35px;
        padding: 7px;
    }
    .main_tab img {
        width: 30px;
    }
    .collapse-wrapper ul.main_tab {
        gap: 8px !important;
    }
    #playerList,
    #itemsList {
        max-height: 268px;
    }
    .collapse-horizontal.collapse.show .card {
        margin-top: 20px;
    }
    .players_tab h6 {
        margin-top: 5px;
        margin-bottom: 5px;
    }
    button.up_btn {
        margin-bottom: 5px;
    }
    button.down_btn,
    .collapse-wrapper .players_tab ul.sub_tab#drawList {
        margin-top: 5px;
    }
    .collapse-wrapper .players_tab ul.sub_tab {
        gap: 5px;
    }
    .players_tab .close_tab {
        top: -30px;
    }
    .players_tab .up_btn,
    .players_tab .down_btn {
        padding: 2px 0;
    }
    .players_tab .up_btn img,
    .players_tab .down_btn img {
        width: 20px;
    }
    #drawTab #drawList .large_btn {
        height: 27px;
    }
    #drawTab #drawList button.bg_clr_picker{
        height: 35px;
    }
    .element_sidebar .collapse-wrapper #textTab button.dropdown-toggle,
    .collapse-wrapper .players_tab #textList li.large_btn {
        height: 40px;
    }
    #textTab .dropdown .dropdown-menu {
        max-height: 175px;
        width: 85px;
    }
    #animateTab .frame {
        height: 10px;
        padding: 0;
    }
    #animateTab .frame_list{
        max-height: 58px;
        gap: 5px;
    }
    .collapse-wrapper #animateList .play_pause,
    .collapse-wrapper #animateList .record_animation_video,
    .collapse-wrapper #animateList .animate_stop {
        height: 50px;
        width: 50px;
    }
    .collapse-wrapper #animateList li.play_pause img,
    .collapse-wrapper #animateList .record_animation_video img,
    .collapse-wrapper #animateList li.animate_stop img,
    .collapse-wrapper #animateList .previous,
    .collapse-wrapper #animateList .next {
        height: 33px !important;
        width: 33px !important;
    }
    .selected_field_section .team1, .selected_field_section .team2 {
        height: 30px !important;
        width: 30px !important;
        font-size: 12px !important;
    }
    .selected_field_section .player.ball_style_team1:before, .selected_field_section .player.ball_style_team2:before{
        width: 2px !important;
        left: 2px !important;
    }
    .selected_field_section .player.ball_style_team1:after, .selected_field_section .player.ball_style_team2::after{
        width: 2px !important;
        right: 2px !important;
    }
    .selected_field_section img#item1[draggable="true"],
    .selected_field_section img#item2[draggable="true"],
    .selected_field_section img#item3[draggable="true"],
    .selected_field_section img#item4[draggable="true"],
    .selected_field_section img#item17[draggable="true"],
    .selected_field_section img#item18[draggable="true"],
    .selected_field_section img#item19[draggable="true"]{
        transform: none !important;
    }
    .selected_field_section img#item46[draggable="true"], .selected_field_section img#item47[draggable="true"], .selected_field_section img#item48[draggable="true"], .selected_field_section img#item49[draggable="true"], .selected_field_section img#item50[draggable="true"] {
        transform: scale(0.8) !important;
    }

    /* 19-11 */
    .session_section .session_name_input input{
        width: 240px;
        font-size: 14px;
    }
    .session_section .header_btn button,
    .footer_section div{
        font-size: 14px;
        line-height: 18px;
    }
    .session_section .header_btn button.primary-btn img{
        width: 14px;
        height: 14px;
        margin-right: 5px;
    }
    .site_logo img{
        width: 70px;
    }
    .sidebar_button{
        height: 110px;
    }
    .sidebar_button img{
        height: 100%;
    }
    .footer_section div img {
        width: 22px;
        height: 22px;
    }
    .footer_section{
        gap: 20px;
    }
    .create_session .site_logo, .session_section .header_div{
        padding-top: 5px;
    }
    /* .peach_bg img{
        width: 395px;
    } */
    .session_section .header_btn button {
        padding: 6px 15px;
    }
    #animateTab .dropdown .dropdown-menu{
        width: auto;
    }
    .txt_clr_picker span, .bg_clr_picker span{
        font-size: 14px;
        line-height: 16px;
    }
}
@media(max-width: 1366px) and (max-height: 768px){

    .modal-body {
        /* max-height: 48vh; */
    }
}

@media (max-width: 1024px) {
    .session_section{
        background-image: url(/assets/images/session_images/ipad-bg.svg);
    }
    .session_section .session_name_input input {
        width: auto;
    }
    .primary-btn img {
        margin-right: 0px;
    }
    .selected_field_section {
        /* height: calc(100vh - 308px) !important; */
        margin-top: 0;
    }
    .selected_field_section.second_field #main-peach-img, .selected_field_section.second_field {
        /* height: calc(100vh - 130px); */
        margin-top: 18px;
    }
    .selected_field_section.third_field #main-peach-img, .selected_field_section.fourth_field #main-peach-img, .selected_field_section.third_field,
    .selected_field_section.fourth_field{
        /* height: calc(100vh - 245px) !important; */
    }
    .session_section .header_btn{
        gap: 10px !important;
    }
}
@media (max-width: 991px) {
    .selected_field_section {
        /* height: calc(100vw - 480px) !important; */
    }
    #team_setting .modal-dialog, #field_setting .modal-dialog {
        max-width: 80vw;
    }
    .selected_field_section img#item46[draggable="true"], .selected_field_section img#item47[draggable="true"], .selected_field_section img#item48[draggable="true"], .selected_field_section img#item49[draggable="true"], .selected_field_section img#item50[draggable="true"] {
        transform: scale(0.5) !important;
    }
    /* .session_section{
        height: 100vh !important;
    } */
    .selected_field_section.second_field #main-peach-img,
    .selected_field_section.second_field {
        /* height: calc(100vh - 595px) !important; */
        margin-top: 0 !important;
    }
    .selected_field_section.third_field #main-peach-img, .selected_field_section.fourth_field #main-peach-img, .selected_field_section.third_field,
    .selected_field_section.fourth_field{
        /* height: calc(100vw - 460px) !important; */
        /* margin-top: 0 !important; */
        margin-bottom: 0 !important;
    }
    .peach_bg img {
        width: 315px;
    }
    .selected_field_section.blank_field #main-peach-img{
        width: 75%;
        /* height: calc(100vh - 300px); */
    }
    .team-1-change-style, .team-2-change-style {
        height: 60px !important;
        width: 60px !important;
    }
    .collapse-wrapper ul hr{
        margin: 0;
    }
    #textTab #textList .bg_clr_picker .slider{
        height: auto;
    }
    #textTab #textList button{
        height: 40px;
    }
    #field_setting .modal-body div{
        width: 30%;
    }
    .session_section .header_btn button {
        padding: 6px 10px;
    }
}
@media(max-width: 768px){
    .selected_field_section.second_field #main-peach-img, .selected_field_section.second_field {
        /* height: calc(100vh - 485px) !important; */
    }
}

/* .text-box {
    font-size: 22px;
    border: 1px dashed #ccc;
    padding: 5px;
    min-width: 100px;
    min-height: 30px;
    cursor: move;
    user-select: none;
    resize: both;
    overflow: auto;
  } */

.text-box {
    position: absolute;
    min-width: 100px;
    min-height: 30px;
    padding: 5px;
    border: 2px solid transparent; /* Default to transparent */
    transition: border-color 0.3s; /* Smooth transition */
}

.text-box.focused {
    border-color: black; /* Change to white when focused */
}

.path-line {
    position: absolute;
    height: 2px;
    background-color: yellow;
    pointer-events: none;
}

.selected {
    /* border: 2px solid yellow; */
    transition: border 0.3s ease;
}

.box {
    position: absolute;
    user-select: none;
    /* transform: translate(-50%, -50%); */
    border: 2px dashed transparent;
}

.box.active {
    border-color: #fff;
    /* border-style: solid; */
}

.selected_field_section .item.new_equipment_class {
    height: -webkit-fit-content !important;  /* Safari-specific fix */
    height: fit-content !important;          /* Standard for Chrome */
}

.resize-handler {
    /* height: 10px;
    width: 10px;
    background-color: #0055ff; */
    position: absolute;
    /* border-radius: 100px;
    border: 1px solid #ffffff; */
    user-select: none;
    display: none; /* Initially hidden */
}

/* .resize-handler:hover {
    background-color: #0000cc;
} */

  .primary-btn.selected {
    background-color: #d9021c;
    color: white;
  }

  .droppable-area {
    position: relative;
    width: 100%;
    height: 400px;
    border: 2px dashed gray;
    background-color: #f9f9f9;
  }

  .arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid red;
  }

  .line {
    position: absolute;
    background-color: red;
    height: 2px;
    transform-origin: 0 0;
  }

  .dynamic-delete {
    position: absolute;
    left: auto;
    height: 20px;
    top: -33px;
    right: -22px;
}

.add_more{
    position: absolute;
    left: auto;
    height: 20px;
    top: -33px;
    right: -44px;
}

/* Rashmin */
.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 25px;
    background-image: linear-gradient(to right,rgba(0,0,0,0),#FFFFFF);
    outline: none;
  }
  .slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 10px;
    height: 30px;
    background: #4CAF50;
    cursor: pointer;
  }

.item , .player{
    z-index: 10;
}

.football{
    z-index: 16 !important;
}

.player_active{
    border: 2px dashed white;
}

.player-delete {
    position: absolute;
    left: auto;
    height: 20px;
    top: -30px !important;
    right: -15px !important;
}

.new_class{
    z-index: 11 !important;
}



.team_style_main .dropdown-toggle{
    width: 100%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
#selectedStyle{
    margin: auto;
    height: 50px !important;
    width: 50px !important;
}
.team_style_main .dropdown-toggle::after{
    margin-left: auto;
}
.team_style_main .dropdown-menu li svg{
    width: 60px !important;
    height: 60px !important;
}
.team_style_main .dropdown-menu{
    max-height: 210px;
    overflow: auto;
}
.team_style_main .dropdown-toggle:focus{
    box-shadow: none;
}
.team_style_main .dropdown-menu .dropdown-item{
    text-align: center;
}
.team_style_main .dropdown-item.active, .team_style_main .dropdown-item:active{
    background-color: #e9ecef;
}



.team_2_img-1{
    width: 100%;
    height: 100%;
    border: 3px solid #fff;
    border-radius: 50%;
    background-color: var(--team2-first-color, #ffffff);
    color: var(--team2-third-color, #000000);
    /* box-shadow: 0px 3px 29px 5px #00000027; */
    background-image: repeating-linear-gradient(
      to right,
      var(--team2-second-color, #ff0000) 0%,
      var(--team2-second-color, #ff0000) 100%
    );
    background-size: 100% 100%;
}

.team_2_img-2{
    width: 100%;
    height: 100%;
    border: 3px solid #fff;
    border-radius: 50%;
    background-color: var(--team2-first-color, #ffffff);
    color: var(--team2-third-color, #000000);
    /* box-shadow: 0px 3px 29px 5px #00000027; */
    background-image: repeating-linear-gradient(
        to right,
        transparent 0%,
        transparent 25%,
        var(--team2-second-color, #ff0000) 25%,
        var(--team2-second-color, #ff0000) 75%,
        transparent 75%,
        transparent 100%
    );
    background-size: 100% 100%;
}

.team_2_img-3{
    width: 100%;
    height: 100%;
    border: 3px solid #fff;
    border-radius: 50%;
    background-color: var(--team2-first-color, #ffffff);
    color: var(--team2-third-color, #000000);
    /* box-shadow: 0px 3px 29px 5px #00000027; */
    background-image: repeating-linear-gradient(
        to right,
        var(--team2-second-color, #ff0000) 0%,
        var(--team2-second-color, #ff0000) 11.11%,
        transparent 11.11%,
        transparent 22.22%,
        var(--team2-second-color, #ff0000) 22.22%,
        var(--team2-second-color, #ff0000) 33.33%,
        transparent 33.33%,
        transparent 44.44%,
        var(--team2-second-color, #ff0000) 44.44%,
        var(--team2-second-color, #ff0000) 55.55%,
        transparent 55.55%,
        transparent 66.66%,
        var(--team2-second-color, #ff0000) 66.66%,
        var(--team2-second-color, #ff0000) 76.77%,
        transparent 75.77%,
        transparent 85.88%,
        var(--team2-second-color, #ff0000) 88.88%,
        var(--team2-second-color, #ff0000) 100%
    );
    background-size: 100% 100%;
  }

.team_2_img-4{
    width: 100%;
    height: 100%;
    border: 3px solid #fff;
    border-radius: 50%;
    background-color: var(--team2-first-color, #ffffff);
    color: var(--team2-third-color, #000000);
    /* box-shadow: 0px 3px 29px 5px #00000027; */
    background-image: repeating-linear-gradient(
      to top,
      var(--team2-second-color, #ff0000) 0%,
      var(--team2-second-color, #ff0000) 11.11%,
      transparent 11.11%,
      transparent 22.22%,
      var(--team2-second-color, #ff0000) 22.22%,
      var(--team2-second-color, #ff0000) 33.33%,
      transparent 33.33%,
      transparent 44.44%,
      var(--team2-second-color, #ff0000) 44.44%,
      var(--team2-second-color, #ff0000) 55.55%,
      transparent 55.55%,
      transparent 66.66%,
      var(--team2-second-color, #ff0000) 66.66%,
      var(--team2-second-color, #ff0000) 77.77%,
      transparent 77.77%,
      transparent 88.88%,
      var(--team2-second-color, #ff0000) 88.88%,
      var(--team2-second-color, #ff0000) 100%
    );
    background-size: 100% 100%;
}


.team_2_img-5{
    width: 100%;
    height: 100%;
    border: 3px solid #fff;
    border-radius: 50%;
    background-color: var(--team2-first-color, #ffffff);
    color: var(--team2-third-color, #000000);
    /* box-shadow: 0px 3px 29px 5px #00000027; */
    background-image: repeating-linear-gradient(
      45deg,
      var(--team2-second-color, #ff0000) 0%,
      var(--team2-second-color, #ff0000) 37.50%,
      transparent 37.50%,
      transparent 62.50%,
      var(--team2-second-color, #ff0000) 62.50%,
      var(--team2-second-color, #ff0000) 100%
    );
    background-size: 100% 100%;
}

.team_2_img-6{
    width: 100%;
    height: 100%;
    border: 3px solid #fff;
    border-radius: 50%;
    background-color: var(--team2-first-color, #ffffff);
    color: var(--team2-third-color, #000000);
    /* box-shadow: 0px 3px 29px 5px #00000027; */
    background-image: repeating-linear-gradient(
      to right,
      var(--team2-second-color, #ff0000) 0%,
      var(--team2-second-color, #ff0000) 50%,
      transparent 50%,
      transparent 100%
    );
    background-size: 100% 100%;
}

.team_2_img-7{
    width: 100%;
    height: 100%;
    border: 3px solid #fff;
    border-radius: 50%;
    background-color: var(--team2-first-color, #ffffff);
    color: var(--team2-third-color, #000000);
    /* box-shadow: 0px 3px 29px 5px #00000027; */
    background-image: repeating-linear-gradient(
        to top,
        var(--team2-second-color, #ff0000) 0%,
        var(--team2-second-color, #ff0000) 70%,
        transparent 70%,
        transparent 100%
    );
    background-size: 100% 100%;
}

.team_2_img-8{
    width: 100%;
    height: 100%;
    border: 3px solid #fff;
    border-radius: 50%;
    background-color:var(--team2-style8-color, #ffffff);
    color: var(--team2-third-color, #000000);
    /* box-shadow: 0px 3px 29px 5px #00000027; */
    background-image:
      repeating-linear-gradient(
        to right,
        var(--team2-style8-color, #ffffff) 0%,
        var(--team2-style8-color, #ffffff) 11.11%,
        transparent 11.11%,
        transparent 22.22%,
        var(--team2-style8-color, #ffffff) 22.22%,
        var(--team2-style8-color, #ffffff) 33.33%,
        transparent 33.33%,
        transparent 44.44%,
        var(--team2-style8-color, #ffffff) 44.44%,
        var(--team2-style8-color, #ffffff) 55.55%,
        transparent 55.55%,
        transparent 66.66%,
        var(--team2-style8-color, #ffffff) 66.66%,
        var(--team2-style8-color, #ffffff) 77.77%,
        transparent 77.77%,
        transparent 88.88%,
        var(--team2-style8-color, #ffffff) 88.88%,
        var(--team2-style8-color, #ffffff) 100%
      ),
      linear-gradient(
        to top,
        var(--team2-second-color, #ff0000) 0%,
        var(--team2-second-color, #ff0000) 70%,
        transparent 70%,
        transparent 100%
      );
    background-size: 100% 100%;
}



.team_1_img-1{
    width: 100%;
    height: 100%;
    border: 3px solid #fff;
    border-radius: 50%;
    background-color: var(--team1-first-color, #FFDC1C);
    color: var(--team1-third-color, #000000);
    /* box-shadow: 0px 3px 29px 5px #00000027; */
    background-image: repeating-linear-gradient(
      to right,
      var(--team1-second-color, #16B110) 0%,
      var(--team1-second-color, #16B110) 100%
    );
    background-size: 100% 100%;
}

.team_1_img-2{
    width: 100%;
    height: 100%;
    border: 3px solid #fff;
    border-radius: 50%;
    background-color: var(--team1-first-color, #FFDC1C);
    color: var(--team1-third-color, #000000);
    /* box-shadow: 0px 3px 29px 5px #00000027; */
    background-image: repeating-linear-gradient(
        to right,
        transparent 0%,
        transparent 25%,
        var(--team1-second-color, #16B110) 25%,
        var(--team1-second-color, #16B110) 75%,
        transparent 75%,
        transparent 100%
    );
    background-size: 100% 100%;
}

.team_1_img-3{
    width: 100%;
    height: 100%;
    border: 3px solid #fff;
    border-radius: 50%;
    background-color: var(--team1-first-color, #FFDC1C);
    color: var(--team1-third-color, #000000);
    /* box-shadow: 0px 3px 29px 5px #00000027; */
    background-image: repeating-linear-gradient(
        to right,
        var(--team1-second-color, #16B110) 0%,
        var(--team1-second-color, #16B110) 11.11%,
        transparent 11.11%,
        transparent 22.22%,
        var(--team1-second-color, #16B110) 22.22%,
        var(--team1-second-color, #16B110) 33.33%,
        transparent 33.33%,
        transparent 44.44%,
        var(--team1-second-color, #16B110) 44.44%,
        var(--team1-second-color, #16B110) 55.55%,
        transparent 55.55%,
        transparent 66.66%,
        var(--team1-second-color, #16B110) 66.66%,
        var(--team1-second-color, #16B110) 76.77%,
        transparent 75.77%,
        transparent 85.88%,
        var(--team1-second-color, #16B110) 88.88%,
        var(--team1-second-color, #16B110) 100%
    );
    background-size: 100% 100%;
  }

.team_1_img-4{
    width: 100%;
    height: 100%;
    border: 3px solid #fff;
    border-radius: 50%;
    background-color: var(--team1-first-color, #FFDC1C);
    color: var(--team1-third-color, #000000);

    /* box-shadow: 0px 3px 29px 5px #00000027; */
    background-image: repeating-linear-gradient(
      to top,
      var(--team1-second-color, #16B110) 0%,
      var(--team1-second-color, #16B110) 11.11%,
      transparent 11.11%,
      transparent 22.22%,
      var(--team1-second-color, #16B110) 22.22%,
      var(--team1-second-color, #16B110) 33.33%,
      transparent 33.33%,
      transparent 44.44%,
      var(--team1-second-color, #16B110) 44.44%,
      var(--team1-second-color, #16B110) 55.55%,
      transparent 55.55%,
      transparent 66.66%,
      var(--team1-second-color, #16B110) 66.66%,
      var(--team1-second-color, #16B110) 77.77%,
      transparent 77.77%,
      transparent 88.88%,
      var(--team1-second-color, #16B110) 88.88%,
      var(--team1-second-color, #16B110) 100%
    );
    background-size: 100% 100%;
}


.team_1_img-5{
    width: 100%;
    height: 100%;
    border: 3px solid #fff;
    border-radius: 50%;
    background-color: var(--team1-first-color, #FFDC1C);
    color: var(--team1-third-color, #000000);

    /* box-shadow: 0px 3px 29px 5px #00000027; */
    background-image: repeating-linear-gradient(
      45deg,
      var(--team1-second-color, #16B110) 0%,
      var(--team1-second-color, #16B110) 37.50%,
      transparent 37.50%,
      transparent 62.50%,
      var(--team1-second-color, #16B110) 62.50%,
      var(--team1-second-color, #16B110) 100%
    );
    background-size: 100% 100%;
}

.team_1_img-6{
    width: 100%;
    height: 100%;
    border: 3px solid #fff;
    border-radius: 50%;
    background-color: var(--team1-first-color, #FFDC1C);
    color: var(--team1-third-color, #000000);

    /* box-shadow: 0px 3px 29px 5px #00000027; */
    background-image: repeating-linear-gradient(
      to right,
      var(--team1-second-color, #16B110) 0%,
      var(--team1-second-color, #16B110) 50%,
      transparent 50%,
      transparent 100%
    );
    background-size: 100% 100%;
}

.team_1_img-7{
    width: 100%;
    height: 100%;
    border: 3px solid #fff;
    border-radius: 50%;
    background-color: var(--team1-first-color, #FFDC1C);
    color: var(--team1-third-color, #000000);

    /* box-shadow: 0px 3px 29px 5px #00000027; */
    background-image: repeating-linear-gradient(
        to top,
        var(--team1-second-color, #16B110) 0%,
        var(--team1-second-color, #16B110) 70%,
        transparent 70%,
        transparent 100%
    );
    background-size: 100% 100%;
}

.team_1_img-8{
    width: 100%;
    height: 100%;
    border: 3px solid #fff;
    border-radius: 50%;
    background-color:var(--team1-style8-color, #FFDC1C);
    color: var(--team1-third-color, #000000);

    /* box-shadow: 0px 3px 29px 5px #00000027; */
    background-image:
      repeating-linear-gradient(
        to right,
        var(--team1-style8-color, #FFDC1C) 0%,
        var(--team1-style8-color, #FFDC1C) 11.11%,
        transparent 11.11%,
        transparent 22.22%,
        var(--team1-style8-color, #FFDC1C) 22.22%,
        var(--team1-style8-color, #FFDC1C) 33.33%,
        transparent 33.33%,
        transparent 44.44%,
        var(--team1-style8-color, #FFDC1C) 44.44%,
        var(--team1-style8-color, #FFDC1C) 55.55%,
        transparent 55.55%,
        transparent 66.66%,
        var(--team1-style8-color, #FFDC1C) 66.66%,
        var(--team1-style8-color, #FFDC1C) 77.77%,
        transparent 77.77%,
        transparent 88.88%,
        var(--team1-style8-color, #FFDC1C) 88.88%,
        var(--team1-style8-color, #FFDC1C) 100%
      ),
      linear-gradient(
        to top,
        var(--team1-second-color, #16B110) 0%,
        var(--team1-second-color, #16B110) 70%,
        transparent 70%,
        transparent 100%
      );
    background-size: 100% 100%;
}

/* .white_player{
    background-color: #fff;
}

.yellow_player{
    background-color: #ffeb3c;
}

.blue_player{
    background-color: #1D71B8;
}

.red_player{
    background-color: #E30613;
} */

.save-as-image{
    width: 50px;
}

.white_player{
    width: 100%;
    height: 100%;
    border: 3px solid #fff;
    border-radius: 50%;
    background-color: #fff;
    /* box-shadow: 0px 3px 29px 5px #00000027; */
    background-image: repeating-linear-gradient(
      to right,
      #fff 0%,
      #fff 100%
    );
    background-size: 100% 100%;
}

.yellow_player{
    width: 100%;
    height: 100%;
    border: 3px solid #fff;
    border-radius: 50%;
    background-color: #ffeb3c;
    /* box-shadow: 0px 3px 29px 5px #00000027; */
    background-image: repeating-linear-gradient(
      to right,
      #ffeb3c 0%,
      #ffeb3c 100%
    );
    background-size: 100% 100%;
}

.blue_player{
    width: 100%;
    height: 100%;
    border: 3px solid #fff;
    border-radius: 50%;
    background-color: #1D71B8;
    /* box-shadow: 0px 3px 29px 5px #00000027; */
    background-image: repeating-linear-gradient(
      to right,
      #1D71B8 0%,
      #1D71B8 100%
    );
    background-size: 100% 100%;
}

.red_player{
    width: 100%;
    height: 100%;
    border: 3px solid #fff;
    border-radius: 50%;
    background-color: #E30613;
    /* box-shadow: 0px 3px 29px 5px #00000027; */
    background-image: repeating-linear-gradient(
      to right,
      #E30613 0%,
      #E30613 100%
    );
    background-size: 100% 100%;
}