@import url("./global-componant.css");
@import url("./global.css");
@import url("./form-stepper.css");
@import url("./loader.css");

* {
    padding: 0;
    margin: 0;
}

.landing-page,
.order-submit {
    background: linear-gradient(180deg, #044794 0%, #1880e0 100%);
    height: 100vh;
    width: 100%;
    color: var(--white);
    appearance: none;
}

.landing-page .landing-footer {
    background: url("../images/landing-raquete.svg") no-repeat;
    background-position: center top;
    background-size: contain;
    min-height: 310px;
    position: absolute;
    bottom: 0;
    width: calc(100% - 40px);
}

.landing-page .landing-footer a {
    color: var(--white);
}

.landing-page .primary-btn,
.order-submit .primary-btn {
    background: var(--landing-button);
}

.racquet-picture .file {
    position: relative;
    display: flex;
    justify-content: start;
    align-items: center;
}

.racquet-picture .file > input[type="file"] {
    display: none;
}

.racquet-picture .file > label {
    font-size: 1rem;
    font-weight: 300;
    cursor: pointer;
    outline: 0;
    user-select: none;
    border-color: rgb(216, 216, 216) rgb(209, 209, 209) rgb(186, 186, 186);
    border-style: dashed;
    border-radius: 12px;
    border-width: 1px;
    background-color: hsl(0, 0%, 100%);
    color: hsl(0, 0%, 29%);
    /* padding: 5px; */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.racquet-picture .file > label:hover {
    border-color: hsl(0, 0%, 21%);
}

.racquet-picture .file > label:active {
    background-color: hsl(0, 0%, 96%);
}

.custom-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.15);
}

.custom-card-noshadow {
    border-radius: 12px;
    overflow: hidden;
}

.custom-card-noshadow .order-img {
    background-position: center center;
    min-height: 355px;
}

.custom-card .order-img {
    background: url("../images/produc-img.jpg") no-repeat;
    background-position: center center;
    min-height: 355px;
}

.custom-card .order-img .bg-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    color: #fff;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.65+100 */
    background: -moz-linear-gradient(
        top,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.65) 100%
    );
    /* FF3.6-15 */
    background: -webkit-linear-gradient(
        top,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.65) 100%
    );
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.65) 100%
    );
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#a6000000', GradientType=0);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    /* IE6-9 */
}

.searchBox-fakeInput {
    background: white;
    border: 1px solid var(--primary-clr);
    border-radius: 12px;
    display: table;
    width: 100%;
}

.searchBox-inputWrapper,
.searchBox-clearWrapper {
    width: 100%;
    display: table-cell;
    vertical-align: middle;
    position: relative;
}

input[type="text"].searchBox-input {
    background-color: transparent;
    border: none !important;
    box-shadow: none;
    outline: none;
    width: 100%;
    padding: 0.375rem 1rem 0.375rem 2.5rem !important;
    color: var(--heading-color) !important;
}

input[type="text"].searchBox-input::placeholder {
    color: var(--placeholfder-clr2);
    font-size: 14px !important;
    line-height: 12px;
}

textarea::placeholder {
    color: var(--placeholfder-clr2);
    font-size: 14px !important;
    line-height: 12px;
    padding-top: 10px;
}

.searchBox-inputWrapper::before {
    content: "";
    background-image: url(../images/search-normal.svg);
    width: 24px;
    height: 24px;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translate(0, -50%);
    margin-right: 15px;
    background-size: 100%;
    background-repeat: no-repeat;
    opacity: 0.5;
}

.searchBox-input:focus {
    outline: none !important;
    background: transparent;
    box-shadow: none;
}

.searchBox-clearWrapper {
    padding-right: 0.5rem;
}

.searchBox-clear,
.searchBox-clear-one {
    color: var(--label-grey);
    padding: 0;
    cursor: pointer;
    font-size: inherit;
    cursor: pointer;
    line-height: 1.5;
    -webkit-transition: all 3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.searchBox-clearInput:hover {
    color: #aaa;
}

.search-result-container {
    border-radius: 14px;
    /* overflow-y: hidden;
    height: 100vh; */
}

.search-result {
    background: var(--white);
    border-radius: 14px !important;
    box-shadow: 0px 6px 20px rgb(0 0 0 / 15%);
    margin-top: 12px;
    /* height: calc(100% - 20px);
    overflow-y: scroll; */
    padding-bottom: 10px;
}

.search-result .list-group {
    border-radius: 14px !important;
    display: inline-block;
    overflow: hidden;
}

.search-result .list-group .list-group-item {
    border-width: 0;
    display: flex;
    align-items: center;
    /* margin-left: 40px; */
}

.search-result .list-group .list-group-item::before {
    content: " ";
    background: url("../images/shop.svg");
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    display: inline-block;
    background-position: left center;
}

input[type="text"].text-dropdown {
    border-top-right-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
}

.btn-right.input-group .form-select {
    background-color: var(--primary-border);
    border-top-left-radius: 0 !important;
    border-top-right-radius: var(--border-radius-12) !important;
    border-bottom-right-radius: var(--border-radius-12) !important;
    border-bottom-left-radius: 0 !important;
    width: 90px;
    flex: auto 0;
    margin-left: 0px !important;
}

/* .small-sm{
    font-size: 0.82em !important;
} */

/* .input-group .form-select::after{
    content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    background: url('../images/arrow-down.svg');
    width: 16px;
    height: 12px;
    transform: translate(0, -50%);
    display: inline-block;
} */

/* .text-dropdown+button.dropdown-toggle {
    background: var(--primary-border);
    border-top-left-radius:0;
    border-top-right-radius: var(--border-radius-12);
    border-bottom-right-radius: var(--border-radius-12);
    border-bottom-left-radius:0;
} */

.text-dropdown:focus-visible {
    outline: 0;
}

.shadow-block {
    box-shadow: 0px 6px 20px rgb(0 0 0 / 15%);
    border-radius: 12px;
    padding: 20px;
}

.shadow-block-noshadow {
    box-shadow: none;
    border-radius: 0;
    padding: 20px;
}

.custom-camera {
    background: url("../images/camera-scan.svg") no-repeat;
    width: 20px;
    height: 20px;
    display: inline-block;
    background-size: 100%;
    background-position: center center;
}

.secondary-btn:hover .custom-camera {
    background: url("../images/camera-white.svg") no-repeat;
    width: 20px;
    height: 20px;
    background-size: 100%;
    background-position: center center;
}

.scan-camera {
    position: absolute;
    right: 15px;
    top: 5px;
}

.custom-warning {
    border: none;
    padding: 8px 16px;
    border-radius: 12px;
    background: var(--warning-bg);
}

.custom-warning h4::after {
    content: " ";
    /* background: url('../images/calendar.svg'); */
    background-repeat: no-repeat;
    background-position: right center;
    width: 25px;
    height: 25px;
    display: inline-block;
}

.custom-warning h4 {
    color: var(--waring-txt);
    margin: 0;
    font-size: var(--font-18);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.custom-warning p {
    color: var(--waring-txt);
}

.product-status .order-st {
    font-size: var(--font-18);
}

.custom-danger {
    border: none;
    padding: 8px 16px;
    border-radius: 12px;
    background: var(--danger-bg);
}

.custom-danger h4 {
    color: var(--danger-txt);
    margin: 0;
    font-size: var(--font-18);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.custom-success {
    border: none;
    border-radius: 12px;
    background: var(--success-bg);
}

.custom-success h4 {
    color: var(--succes-txt);
    margin: 0;
    font-size: var(--font-18);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.custom-success .custom-success-icon {
    background: url("../image/tick-circle.svg");
    width: 25px;
    height: 20px;
    display: inline-block;
    background-size: cover;
}

.order-status .alert {
    padding: 8px 12px;
}

.custom-dark {
    border: none;
    /* padding: 12px; */
    border-radius: 12px;
    background: var(--dark-bg);
}

.custom-dark h4 {
    color: var(--heading-color);
    margin: 0;
    font-size: var(--heading-color);
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
}

.custom-dark h4::before {
    content: " ";
    background: url("../images/dark-calendar.svg");
    background-repeat: no-repeat;
    background-position: right center;
    width: 25px;
    height: 25px;
    display: inline-block;
    margin-right: 10px;
}

.warning-txt {
    color: var(--waring-txt);
}

.danger-txt {
    color: var(--danger-txt);
}

.primary-txt {
    color: var(--primary-clr);
}

#myProfileTab,
#myTab {
    border-bottom: none;
    margin-bottom: 30px;
}

#myProfileTab .nav-item,
#myTab .nav-item {
    width: 50%;
}

#myProfileTab .nav-link,
#myTab .nav-link {
    background: var(--white);
    border: solid 1px var(--primary-border);
    font-size: var(--font-18);
    color: var(--heading-color);
    width: 100%;
    border-radius: 0;
}

#myProfileTab .nav-item:first-child .nav-link,
#myTab .nav-item:first-child {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

#myProfileTab .nav-link.active,
#myTab .nav-link.active {
    background: var(--tab-active-bg);
    border: solid 1px var(--primary-clr);
    color: var(--primary-clr);
}

#myProfileTab .nav-item:last-child .nav-link,
#myTab .nav-item:last-child {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

.custom-modal .modal-header {
    padding: 20px 20px 0 20px;
    border-bottom: none;
}

.custom-modal .modal-header .modal-title {
    font-size: var(--font-18);
}

.custom-modal .modal-footer {
    border-top: none;
}

.custom-modal .modal-body {
    padding: 20px;
}

.custom-modal .cancel-custom-btn {
    color: var(--danger-txt);
}

.order-info-main .order-image {
    height: 50px;
    min-width: 50px;
    border-radius: 20px;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    display: inline-block;
}

.order-info-main .racquiet-name {
    font-size: var(--font-14);
    color: var(--heading-color);
    margin-bottom: 4px;
}

.grey-txt {
    color: var(--primary-text);
}

.order-detail-container .product-img {
    border-radius: 14px;
    overflow: hidden;
}

.order-detail-container .product-img img {
    border-radius: 14px;
}

.order-detail-container .product-img2 {
    border-radius: 14px;
    overflow: hidden;
}

.order-detail-container .product-img2 img {
    border-radius: 14px;
}

.order-status .custom-warning h4::after {
    content: none;
}

.shadow-block h4 {
    font-weight: 700;
}

.radio-btn {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

.radio-btn label {
    display: flex;
    cursor: pointer;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    margin-bottom: 0.375em;
    background: var(--white);
    border: 1px solid var(--primary-border) !important;
    border-radius: var(--border-radius-12) !important;
    box-sizing: border-box;
    color: var(--heading-color) !important;
    font-size: 16px !important;
    font-style: normal !important;
    font-weight: 400 !important;
    height: 50px;
    line-height: 28px !important;
}

.radio-btn label input {
    position: absolute;
    left: -9999px;
}

.radio-btn label input:checked + span {
    background-color: var(--tertiary-clr);
    border: solid 1px var(--primary-clr);

}
.pricing-span i{
    position: relative;
}
.radio-btn label input:checked + span i:before {
    background: var(--primary-clr);
    content: "";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    border: none;
    box-shadow: none;
    color: var(--white);
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11px;
    width: 27px;
    height: 27px;
}

.radio-btn label input:checked + span i:after {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50px;
    position: absolute;
    left: 7.5px;
    top: 7.5px;
    background: #fff;
    display: inline-block;
    z-index: 9999;

}

.radio-btn label span {
    display: flex;
    align-items: center;
    padding: 0.375em 0.75em 0.375em 0.375em;
    border-radius: 12px;
    transition: 0.25s ease;
    width: 100%;
    padding: 0.375rem 1rem !important;
    position: relative;
}

.radio-btn label span:hover {
    background-color: #d6d6e5;
}

.radio-btn label span i:before {
    display: flex;
    flex-shrink: 0;
    content: "";
    background-color: #fff;
    width: 1.5em;
    height: 1.5em;
    border-radius: 50%;
/*    margin-right: 0.375em;*/
 margin-right: 10px;
    transition: 0.25s ease;
    box-shadow: inset 0 0 0 0.125em var(--primary-border);
}

.manage-stripe {
    height: 100vh;
}

.disconnet-stripe,
.red-hyprlink {
    color: var(--danger-txt);
}

.empty-block-dander {
    background: var(--danger-bg);
    border-radius: 12px;
    padding: 20px;
}

.empty-block-dander h4 {
    color: var(--danger-txt) !important;
}

.radio-btn .radio-custom:checked {
    /* position: absolute;
    left: -99999px; */
    background: var(--primary-clr);
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    border: none;
    box-shadow: none;
    color: var(--white);
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    width: 20px;
    height: 20px;
}

.due-date .hybrid-tag {
    background: var(--grey-lt);
    border-radius: 4px;
    padding: 0.1rem 0.5rem;
    font-size: 0.875em;
    color: var(--tertiary-txt);
    margin-right: 7px;
}

.due-date .abbreviation-tag {
    background: #ebeeff;
    border-radius: 4px;
    padding: 0.1rem 0.5rem;
    font-size: 0.875em;
    color: var(--primary-clr);
}

.stock-container {
    min-width: 80px;
}

.search-result-inv .list-group-item {
    border: 0;
    padding: 0.5rem 0;
    background-color: transparent;
}

.search-result-inv .list-group {
    max-height: 57vh;
    overflow-y: auto;
}
.search-result-inv .list-group.list-height {
    max-height: 70vh;
    overflow-y: auto;
}
.search-result-inv .list-group.list-height-less {
    max-height: 50vh;
}

/*Strung search * result*/

.searchBox-fakeInput.strung-search {
    border: solid 0.5px var(--search-border);
}

.search-result-inv.strung-search-result {
    margin-top: 15px;
}

.search-result-inv.strung-search-result ul {
    box-shadow: 0px 6px 20px rgb(0 0 0 / 15%);
    border-radius: 12px;
    max-height: 300px;
    overflow-y: scroll;
    padding: 0 10px;
}

.search-result-inv.strung-search-result ul li.list-group-item {
    border-bottom: solid 1px #ededed !important;
    padding: 0 !important;
}

.search-result-inv.strung-search-result ul li.list-group-item .racquiet-name {
    font-weight: bold;
    color: var(--heading-color);
}

.string-select-search.select-text::after {
    background: none;
    cursor: pointer;
}

.string-select-search {
    background: white;
    border: 1px solid var(--primary-border);
    border-radius: 12px;
    cursor: pointer;
    position: relative;
}

.string-select-search2 {
    background: white;
    border: 1px solid var(--primary-border);
    border-radius: 12px;
    cursor: pointer;
    position: relative;
}

.string-select-search2::after {
    content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    background: url("../images/arrow-down.svg");
    width: 16px;
    height: 12px;
    transform: translate(0, -50%);
}

.string-select-search::after {
    content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    background: url("../images/arrow-down.svg");
    width: 16px;
    height: 12px;
    transform: translate(0, -50%);
}

.the-fieldset {
    /* border: 1px solid #dee2e6!important; */
    border-radius: 5px;
    position: relative;
    background: #f8f8f8;
}

.the-fieldset .the-legend {
    position: absolute;
    top: -15px;
    left: 5px;
    font-size: 18px;
    line-height: inherit;
    background: #ffffff;
    padding: 0 10px;
    margin-bottom: 0;
    font-weight: bold;
    background: #f8f8f8;
}

.the-fieldset + .the-fieldset {
    margin-top: 30px;
}

.inventary-sec {
    background: var(--grey-lt);
    border-radius: 5px;
    margin: 15px 0;
    padding: 15px;
}

.inventary-sec h4 {
    font-size: 1.1rem;
}

.inventary-sec h2 {
    font-size: 1.4rem;
    padding-bottom: 10px;
    border-bottom: solid 1px #ccc;
    margin-bottom: 15px;
}

.swap-icon {
    background: url("../images/ic_baseline-swap-vert.svg");
    background-position: center center;
    background-size: contain;
    padding: 6px 18px;
    background-repeat: no-repeat;
    height: 35px;
    display: inline-block;
}

.primary-btn:hover .swap-icon,
.primary-btn.swap.active {
    background: url("../images/ic_baseline-swap-vert-hover.svg") no-repeat;
    background-position: center center;
    background-size: contain;
    padding: 6px 18px;
    background-repeat: no-repeat;
    height: 35px;
}

.white {
    color: #ffffffa2;
    font-size: large;
}

.white a {
    color: #ffffff;
    font-size: large;
}

button .apple-icon {
    width: 30px;
    height: 30px;
    display: inline-block;
}

.icon-cont {
    width: 30px;
    height: 30px;
    display: inline-block;
}

button .apple-icon svg {
    fill: #fff;
}

button .icon svg {
    width: 20px;
    height: 20px;
}

.text-danger {
    color: #dc3545 !important;
    font-size: 0.8rem;
}

.order-detail-container .Player_Info h3,
.order-detail-container .Order_Info h3 {
    font-size: 1.1rem;
}

.previous-page-row .secondary-btn {
    line-height: 24px;
}

/*Strung search * result*/

.secondary-btn i.fa,
.secondary-btn i.fas {
    line-height: 1.5 !important;
    padding: 2px 5px !important;
}

.your-racquet-heading {
    font-weight: var(--fwt-700);
}

.your-racquet-tag {
    color: var(--white) !important;
    opacity: 0.75 !important;
}

.racq-owner-name,
.racq-phone-no {
    font-weight: var(--fwt-600);
}

.racquet-inf {
    font-size: var(--font-18);
}

.rracquet-owner-num {
    color: #1880e0 !important;
}

.otp-row svg,
line {
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    margin: 0 auto;
    bottom: 10px;
    left: 0;
    transform: translate(-0%, 0px);
    padding: 0 5px;
}

.otp-row .otp-text-field {
    align-items: center;
    appearance: none;
    -webkit-appearance: none;
    background: var(--white);
    border: 1px solid var(--primary-border) !important;
    border-radius: var(--border-radius-12) !important;
    box-sizing: border-box;
    color: var(--heading-color) !important;
    font-size: 16px !important;
    font-style: normal !important;
    font-weight: 400 !important;
    height: 50px;
    line-height: 28px !important;
    padding: 0.375rem 1rem !important;
}

.otp-row input[maxlength="7"] {
    color: transparent;
}

.otp-row input[maxlength="6"] {
    width: 100%;
    font-size: 14px;
    border: 0;
    letter-spacing: 19px;
    outline: none;
    text-align: center;
    margin: 0 auto;
    border: 0 !important;
    padding: 0 10px !important;
    height: 45px;
    background: transparent !important;
}

.otp-row input[maxlength="6"] + svg line {
    /* stroke-dasharray: 20; */
    stroke-dashoffset: 0;
}

/* .otp-row input {
    width: 100%;
    font-size: 14px;
    border: 0;
    letter-spacing: 16px;
    outline: none;
    text-align: left;
    margin: 0 auto;
    border: 0 !important;
    padding: 0 10px !important;
    height: 45px;
    background: transparent;
}
*/

.otp-row svg,
line {
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    margin: 0 auto;
    bottom: 10px;
    left: 0px;
    transform: translate(-0%, 0px);
    padding: 0 5px;
}

/* .otp-row svg,
line {
    position: absolute;
    display: block;

    height: 2px;
    margin: 0 auto;
    bottom: 10px;
    padding: 0 5px;
}

.otp-row svg
{
    width: 180px;
    left: 50%;
    transform: translate(-50%, 0px);
}
.otp-row line{
    width:100%;
    left: 50%;
} */

.otp-row #field-name {
    letter-spacing: 10px;
}

.otp-row .otp-input-fields {
    align-items: center;
    appearance: none;
    -webkit-appearance: none;
    background: var(--white);
    border: 1px solid var(--primary-border) !important;
    border-radius: var(--border-radius-12) !important;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
    height: 60px;
}

.otp-row .otp-text-field .otp-txt-container {
    width: 165px !important;
}

.otp-row .otp-input-fields .otp-field.otp_digits {
    border-radius: 0 !important;
    border-left: 0 !important;
    border-top: 0 !important;
    border-right: 0 !important;
    margin: 0 5px;
    padding: 3px !important;
    text-align: center;
    width: 20px !important;
    height: 28px !important;
    border-bottom: solid 2px var(--label-grey) !important;
}

.otp-row .otp-input-fields .otp-field.otp_digits:focus-visible {
    outline: 0 !important;
    outline: none !important;
}

/* .otp-row input {
    width: 170px;
    font-size: 14px;
    border: 0;
    letter-spacing: 17px;
    outline: none;
    text-align: left;
    margin: 0 auto;
    border: 0 !important;
    padding: 0 10px !important;
    height: 45px;
    background: transparent;
}


.otp-row input+svg line {
    stroke-dasharray: 20;
    stroke-dashoffset: 0;
} */

.owndesc {
    height: 80px;
}

.sub-header {
    font-size: 18px;
    font-weight: 700;
}

.product-img {
    width: 100%;
    height: 300px;
    display: inline-block !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

/* / ---------------- Custom popup -------------- / */
.racq_custom-modal .btn-link {
    color: var(--primary-clr);
    font-weight: bolder;
    font-size: var(--font-18);
    text-decoration: none;
}

.racq_custom-modal .btn-link.danger {
    color: var(--danger-txt);
}

.racq_custom-modal .modal-content {
    border-radius: 14px;
}

.racq_custom-modal .modal-header {
    padding: 1rem 1rem 0 1rem;
}

.racq_custom-modal .modal-body {
    padding: 0.5rem 1rem 0.5rem 1rem;
}

.racq_custom-modal .modal-footer {
    padding: 0 1rem 0.5rem 1rem;
}

.racq_custom-modal .modal-header h5 {
    font-weight: bold;
}

.racq_custom-modal .btn-link:hover {
    text-decoration: underline;
}

main {
    min-height: 100vh;
}

select.select-no-outline {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.racquet_information {
    position: absolute;
    bottom: 15px;
    left: 15px;
}

.ord-date div.sec {
    width: 50%;
}

.checkbox-lg .form-check-input {
    top: 0.8rem;
    scale: 1.4;
    margin-right: 0.7rem;
}

.checkbox-lg .form-check-label {
    padding-top: 13px;
}
.check-large {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.check-large > label {
    padding: 0 !important;
    /* font-weight: 600; */
    font-size: 14px;
    color: #212529 !important;
    font-weight: 400;

    line-height: 26px;
    font-weight: 400;
}

.check-large > .form-check-input {
    border: solid 1px var(--heading-color);
}

#remove.btn-close {
    left: 105px;
    top: -18px;
    background-color: #eaeaea;
    background-size: 30%;
    padding: 12px;
    border-radius: 50%;
    opacity: 1;
    /* display: none; */
}

.list-group-item.order-complete-list {
    padding: 0.5rem 0rem !important;
    border-width: 0;
    background: transparent;
}

.custom-card-noshadow {
    border-radius: 12px;
    overflow: hidden;
    width: 355px;
}
.max-view {
    max-width: 408px;
    margin: 0 auto;
}
.max-view-button {
    max-width: 650px;
    margin: 0 auto;
}

#cke_description #cke_1_top,
#cke_description #cke_1_bottom {
    display: none;
}

#cke_description {
    border: solid 0.5px var(--search-border);
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

#cke_description .cke_inner > iframe .cke_editable > p {
    font-size: 16px !important;
}
/*+++++++++++++++ desktop view changes++++++++++++++++++*/
.desktop-order-content {
    flex-direction: column;
    display: flex;
}

.desktop-order-content .titleHeading {
    order: 0;
}

.desktop-order-content .custom-card-noshadow {
    order: 1;
}
.desktop-img-text {
    display: flex;
    flex-direction: column;
}
.orderDateTop {
    margin-top: 0px !important;
    margin-bottom: 5px;
}
.orderDateTop span{
    font-weight: bold;
}
.d-flex.order-date-sec {
    flex-direction: column;
    margin-top: 20px;
}
.orderDateTopNew.orderDate{
    margin: 0 !important;
}
.desktop-view .titleHeading p {
    margin-bottom: 20px;
}
.desktop-view .product-img2 {
    order: 1;
    margin-top: 0 !important;
}
.video-btn{
    background-color: #fff;
    color:var(--primary-clr);
    border-radius: 10px;
    text-decoration: none;
    margin-top: 20px;
}
.video-btn:hover{
    text-decoration: none;
}
@media screen and (min-width: 768px) {
   
    .desktop-view .titleHeading p {
        margin-bottom: 0;
    }
    .desktop-img-text {
        display: flex;
        flex-direction: row;
    }
    .orderDateTop {
        margin-top: 20px;
    }
    .borderTop {
        padding-top: 20px;
        border-top: 1px solid #aaa;
    }
    .desktop-view .form-check-input {
        height: 20px;
        max-width: 42px;
        min-width: 44px;
    }
    .desktop-text-left {
        text-align: left !important;
    }
    .desktop-text-right {
        text-align: right !important;
    }
    .desktop-text-right a {
        max-width: 350px;
        width: 100%;
    }
    .desktop-view .form-check.form-switch {
        margin-top: -7px;
    }
    .desktop-view .form-check.form-switch label {
        display: none;
    }
    .desktop-view .my-5 {
        margin: 20px 0 !important;
    }
    .desktop-view .mb-5 {
        margin: 0 !important;
    }
    .desktop-view h1 {
        font-size: 24px !important;
    }
    .desktop-view h2 {
        font-size: 20px;
        line-height: normal;
        font-weight: bold;
    }
    .desktop-view h3 {
        font-size: 18px;
        line-height: normal;
    }
    .desktop-view h3.danger-txt {
        font-size: 14px;
        line-height: normal;
    }

    .desktop-view .plead-14 span {
        font-size: 14px;
    }

    .desktop-view.max-view {
        max-width: 100%;
        margin-bottom: 0 !important;
    }
    .desktop-order-content {
        flex-direction: row;
    }
    .desktop-order-content.desktop-order-content2{
        flex-direction: column;
    }
    .desktop-m-0 {
        margin-top: 0 !important;
    }
    .desktop-order-content .titleHeading {
        order: 1;
    }
    .desktop-order-content .custom-card-noshadow {
        order: 0;
    }
    .desktop-order-content {
        display: flex;
/*        border-bottom: 1px solid #aaaaaa;*/
        margin-bottom: 30px;
    }
    .desktop-order-content.top-header {
        justify-content: space-between;
    }
    .desktop-order-content .custom-card-noshadow,
    .desktop-order-content .product-img2 {
        max-width: 84px;
        max-height: 80px;
        min-height: 80px;
        object-fit: cover;
        margin-right: 30px;
        margin-top: 0 !important;
    }

    .desktop-order-content .order-img,
    .desktop-order-content .product-img2 img {
        width: 100%;
        height: 100%;
        min-height: 100%;
    }

    .desktop-view-style {
        width: 100%;
        justify-content: initial !important;
    }
    .desktop-align {
        flex-direction: row !important;
        width: 100%;
        justify-content: start !important;
    }
    .desktop-align > div {
        width: 33%;
    }
    .desktop-align p small span {
        font-weight: 600;
        color: #000;
    }

    .desktop-order-content .Player_Info,
    .desktop-order-content .Order_Info {
        width: 47%;
    }
    .desktop-order-content .Player_Info .my-4,
    .desktop-order-content .Order_Info .my-4,
    .desktop-order-content .Player_Info .my-3,
    .desktop-order-content .Order_Info .my-3,
    .desktop-order-content .Order_Info .my-3,
    .player-note .my-4 {
        display: flex;
        margin: 0px 0 8px !important;
    }
    .desktop-order-content .Order_Info .my-3.desktop-my {
        margin: 0px !important;
    }
    .desktop-order-content .Player_Info h1,
    .desktop-order-content .Order_Info h1,
    .desktop-order-content .Order_Info h1,
    .player-note h1 {
        font-size: 20px !important;
    }
    .desktop-order-content .Player_Info p,
    .desktop-order-content .Order_Info p,
    .desktop-order-content .Order_Info p,
    .player-note p {
        font-size: 14px !important;
        margin-right: 5px;
    }
    .desktop-order-content .Player_Info h3,
    .desktop-order-content .Order_Info h3,
    .desktop-order-content .Order_Info h3,
    .player-note h3 {
        font-size: 14px !important;
        margin: 0;
    }
    .desktop-order-content .Order_Info .my-3 > div,
    .desktop-order-content .Order_Info .my-4 > div {
        display: flex;
    }
    .desktop-flex-end {
        align-items: flex-end;
    }
}
/* ----------------- 27/10/2023 start------------------------ */
.due-date .hybrid-tag.available-text {
    background-color: var(--success-bg);
    color: var(--succes-txt);
}

.due-date .hybrid-tag.rented-text {
    background-color: var(--danger-bg);
    color: var(--danger-txt);
}
.due-date .hybrid-tag.reserved-text {
    background-color: var(--warning-bg);
    color: var(--warning-txt);
}
.the-fieldset h2 {
    font-size: var(--font-18);
}
.label-grey {
    color: var(--label-grey);
}
.succes-txt {
    color: var(--succes-txt);
}
.danger-text {
    color: var(--danger-txt);
}

/* new changes */
.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed),
.accordion-button:focus {
    color: #000;
    background-color: #fff !important;
    box-shadow: none !important;
    outline: inherit;
}

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

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

.modal-content {
    border-radius: 12px;
}

.review-textarea {
    width: 100%;
    min-height: 168px !important;
    resize: none;
    font-size: 18px !important;
    font-weight: 400;
    padding: 16px;
}

.review-textarea::placeholder {
    font-size: 18px !important;
    line-height: normal;
    padding: 0;
}
/* ----------------- 27/10/2023 end------------------------ */
.my-payment-text p{
    max-width: 70%;
}
/* .previous-page-row a.secondary-btn {
    padding: 13px 12px;
}
.previous-page-row a.secondary-btn.edit-padding {
    padding: 8px 12px;
} */
@media screen and (min-width: 1200px) {
    .desktop-order-content h1 {
        font-size: 24px;
    }
}
/*+++++++++++++++ desktop view changes++++++++++++++++++*/
@media screen and (max-width: 767px) {
    .due-date-responsive{
        display: flex;
        flex-wrap: wrap;
        row-gap: 5px;
    }
    .my-payment-text p{
        max-width: 100%;
    }
    .d-flex.order-date-sec {
        flex-direction: row;
        justify-content: space-between;
        margin-top: 0px;
    }
    .orderDateTop {
        margin-top: 0px !important;
        margin-bottom: 20px !important;
    }
    #myProfileTab .nav-link,
    #myTab .nav-link {
        font-size: 14px;
        padding: 0.75rem 1rem;
    }
}

@media screen and (max-width: 767px) {

}


/* // X-Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {  }

/* // Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {  }

/* // Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) { 
    
 }

/* // Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) { 

}




/*--------------end of custom popup -------------------*/
