﻿/*setari generale wrapper-uri*/
.setari-overflow-hidden {
    overflow: hidden;
}

.wrapper-principal-pagina-harta {
    display: flex;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.wrapper-filtre-harta {
    background-color: #4F44A0; /* #1FC468 */
    width: 30%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 40px 40px 25px 40px;
    margin: 0;
    position: relative;
}

    .wrapper-filtre-harta #btnCloseModalFiltre {
        display: none;
    }

#divOverflow {
    overflow-y: auto;
    scrollbar-width: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.divOverflow::-webkit-scrollbar {
    display: none;
}

.wrapper-harta {
    background-color: gray;
    width: 75%;
    height: 100%;
    z-index: 1;
}

#map {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

.gm-style-mtc {
    display: none;
}

.gm-style iframe + div {
    border: none !important;
}

.wrapper-butoane-harta {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 5;
    display: flex;
    gap: 15px;
}

#divLocatieUser,
#divToggleTipHarta {
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    #divLocatieUser i,
    #divToggleTipHarta i {
        font-size: 25px;
        color: #4F44A0; /* #1FC468 */
    }

.hidden {
    display: none;
}

.wrapper-filtre-harta .wrapper-filtre-standard {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#wrapper-cautare-clinica-mobile {
    display: none;
}

#lnkCautaClinica {
    margin-top: 15px;
    width: 100%;
    max-width: 360px;
    padding: 10px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    background: linear-gradient(0deg, #009ED0 0%, #62CCFA 123.75%);
    color: #fff;
    display: block;
    border-radius: 5px;
    text-transform: uppercase;
}

    #lnkCautaClinica:hover {
        text-decoration: none;
        color: #fff;
    }

    #lnkCautaClinica:focus {
        text-decoration: none;
        color: #fff;
    }

/*setari div activeaza locatie*/
#divPermisiuneLocatie {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    padding: 25px 30px;
}

    #divPermisiuneLocatie .second-wrapper {
        background-color: #fdfdfd;
        padding: 20px 30px;
        font-weight: 600;
        display: flex;
        gap: 20px;
        border-radius: 7px;
        position: relative;
        width: 630px;
    }

        #divPermisiuneLocatie .second-wrapper .iconClose {
            background-color: #fff;
            border-radius: 40px;
            box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.25);
            color: #7563F8;
            padding: 8px;
            position: absolute;
            top: 10px;
            right: 10px;
            cursor: pointer;
            z-index: 1;
        }

        #divPermisiuneLocatie .second-wrapper p {
            color: #8492af;
            margin-top: 20px;
        }

    #divPermisiuneLocatie #btnActiveazaLocatie {
        padding: 10px 50px;
        font-size: 16px;
        font-weight: 600;
        background-color: #22AD01;
        color: #fff;
        border: none;
        border-radius: 5px;
        text-transform: uppercase;
    }

    #divPermisiuneLocatie .permisiuneText {
        color: rgba(80, 89, 108, 0.70);
        font-size: 18px;
        font-weight: 500;
        line-height: normal;
        min-width: 185px;
        text-align: start;
    }

    #divPermisiuneLocatie .rand {
        width: 100%;
        align-items: center;
        gap: 85px;
        position: relative;
    }

    #divPermisiuneLocatie .horizontalLine {
        border-bottom: 1px dashed #A8A8A8;
        width: 100%;
    }

/*setari modal clinica*/
#modalDateClinica {
    width: 100%;
    display: flex;
    justify-content: left;
}

#main-wrapper-modal-clinica {
    width: 29%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 1.8%;
    bottom: 0;
    transform: translateY(100%);
    display: none;
    z-index: 10;
}

    #main-wrapper-modal-clinica.show {
        display: block;
        animation: slideIn 0.5s ease-in-out forwards;
    }

    #main-wrapper-modal-clinica.hide {
        animation: slideOut 0.5s ease-in-out forwards;
    }

@keyframes slideIn {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes slideOut {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(100%);
    }
}

#btnCloseModalClinica {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 1px 4px 1px rgba(0, 0, 0, 0.25);
    cursor: pointer;
}

    #btnCloseModalClinica i {
        line-height: normal;
        color: #7563f8;
    }

.iconCloseModal {
    background-color: #fff;
    border-radius: 40px;
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.25);
    color: #7563F8;
    padding: 8px;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    opacity: 1;
    z-index: 1;
}

#secondary-wrapper-modal-clinica {
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 7px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 30px;
    position: relative;
}

#upButoaneModalClinica {
    width: 100%;
    display: flex;
    justify-content: center;
}

.btn-close-modal {
    position: relative;
    top: -10px;
    right: -10px;
    font-size: 45px;
    width: 45px;
    height: 45px;
    font-weight: 400;
    color: #7563f8;
    cursor: pointer;
    align-self: flex-end;
}

    .btn-close-modal:hover {
        color: #4f4f4f;
    }

.logo-clinica {
    width: 50%;
    max-width: 100px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    border: 1px solid #1FC468;
}

#modalDateClinica #lnkLinkDenumireClinica {
    text-align: center;
    font-size: 2rem;
    font-weight: bolder;
    text-transform: uppercase;
    color: #7563f8;
    margin: 20px 15px 15px 15px;
    cursor: pointer;
    background: none;
    border: none;
    white-space: normal;
}

    #modalDateClinica #lnkLinkDenumireClinica:hover, #modalDateClinica #lnkLinkDenumireClinica:focus, #modalDateClinica #lnkLinkDenumireClinica:active {
        color: #7563f8;
        text-decoration: none;
    }

#modalDateClinica #divModalAfiliatDenumire, #divModalAfiliatIndustrie, #divModalAfiliatNrClientiPeLuna {
    text-align: center;
    cursor: pointer;
    background: none;
    border: none;
    white-space: normal;
    margin: 20px 15px 15px 15px;
    font-size: 1.5rem;
}

#modalDateClinica #divModalAfiliatDenumire {
    color: #7563f8;
    text-transform: uppercase;
    font-weight: bolder;
    font-size: 2rem;
}

    #modalDateClinica #divModalAfiliatDenumire:hover, #modalDateClinica #divModalAfiliatDenumire:focus, #modalDateClinica #divModalAfiliatDenumire:active {
        color: #7563f8;
        text-decoration: none;
    }

#btnAflaMaiMulte:hover {
    text-decoration: none;
    color: #7563f8;
}

#modalDateClinica .divProgramClinica {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
}

    #modalDateClinica .divProgramClinica .badgeProgramClinica {
        width: 10px;
        height: 10px;
        border-radius: 10px;
        margin-right: -5px;
    }

    #modalDateClinica .divProgramClinica .txtOraInchidereClinica {
        color: #808080;
    }

.btn-modal-wrapper {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
}

#btnSuna,
#btnProgrameaza,
#btnPornesteNavigatia {
    width: 100%;
    padding: 10px;
    margin: 7px;
    font-weight: 600;
    letter-spacing: 0.02rem;
    text-decoration: none;
    max-width: 300px;
}

#btnSuna,
#btnProgrameaza {
    background-color: #1FC468;
    border: 1px solid #1FC468;
    border-radius: 5px;
    color: #fff;
    text-align: center;
}

#btnProgrameaza {
    background-color: #7563F8;
    border: 1px solid #7563F8;
    border-radius: 5px;
    color: #fff;
    text-align: center;
}

#btnPornesteNavigatia {
    background-color: #fff;
    border: 1px solid #7563f8;
    color: #7563f8;
    text-align: center;
    border-radius: 30px;
}

#btnSuna:hover {
    background-color: #2dd778;
    border: 1px solid #2dd778;
    text-decoration: none;
}

#btnProgrameaza:hover {
    cursor: pointer;
    background-color: #8373fb;
    border: 1px solid #8373fb;
    text-decoration: none;
}

#btnPornesteNavigatia:hover {
    text-decoration: none;
}

.program-deschis-text {
    color: #1FC468;
}

.program-deschis-badge {
    background-color: #1FC468;
}

.program-inchis-text {
    color: #F10C26;
}

.program-inchis-badge {
    background-color: #F10C26;
}

/* setari modal navigatie */
#modalNavigatie {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 40;
}

    #modalNavigatie .modal-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: #fff;
        padding: 20px;
        border-radius: 5px;
        text-align: center;
        z-index: 21;
    }

        #modalNavigatie .modal-content h2 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 20px;
        }

    #modalNavigatie .modal-btn {
        display: inline-block;
        margin: 7px;
        padding: 10px 20px;
        text-align: center;
        text-decoration: none;
        font-size: 16px;
        font-weight: 600;
        border-radius: 5px;
        cursor: pointer;
    }

        #modalNavigatie .modal-btn:hover,
        #modalNavigatie .modal-btn:focus {
            text-decoration: none;
        }

    #modalNavigatie .modal-content #btnGoogleMaps {
        background-color: #1FC468;
        color: #fff;
    }

        #modalNavigatie .modal-content #btnGoogleMaps:hover {
            background-color: #2dd778;
        }

    #modalNavigatie .modal-content #btnWaze {
        background-color: #7563F8;
        color: #fff;
    }

        #modalNavigatie .modal-content #btnWaze:hover {
            background-color: #8373fb;
        }

    #modalNavigatie .modal-content #btnCloseNavModal {
        background-color: #d3d3d3;
        color: black;
    }

        #modalNavigatie .modal-content #btnCloseNavModal:hover {
            background-color: #c7c7c7;
        }

/*setari filtre*/
.txtBoxClinica,
.txtBoxLocalitateTip2 {
    border: none;
    width: 100%;
    font-size: 13px;
    padding-right: 15px;
    background: none;
    color: #FAFAFA;
    font-weight: 600;
    line-height: 16px;
}

.txtBoxLocalitate {
    border: none;
    width: 100%;
    padding-right: 15px;
    background: none;
    font-weight: 600;
    line-height: 16px;
}

.txtBoxLocalitate {
    color: #FAFAFA;
    font-size: 13px;
}

.txtBoxLocalitateTip2 {
    color: rgba(80, 89, 108, 0.70);
    font-size: 16px;
    font-weight: 500;
}

.iconPinLocatie {
    color: #AFA7EE !important;
}

#divLocalitatiGasite,
#divLocalitatiGasiteModal {
    border: 1px solid #AFA7EE;
    border-radius: 5px;
    max-height: 200px;
    overflow-y: auto;
    background: white;
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: none;
}

#divLocalitatiGasite {
    top: 42px;
}

#divLocalitatiGasiteModal {
    top: 100%;
}

.localitate-item {
    padding: 10px;
    cursor: pointer;
    color: #585D70;
    transition: background-color 0.3s;
}

    .localitate-item:hover {
        background-color: #f0f0f0;
    }

.fara-localitati {
    padding: 10px;
    color: #999;
    text-align: center;
}

.txtSpecializare {
    color: #FAFAFA; /* #585D70 */
    background: none;
    border: none;
    width: 100%;
    font-size: 13px;
    font-weight: 600;
    line-height: 16px;
}

    .txtSpecializare::placeholder {
        color: #FAFAFA;
    }

.specializare-item {
    padding: 10px;
    cursor: pointer;
    color: #585D70;
    transition: background-color 0.3s;
}

    .specializare-item:hover {
        background-color: #f0f0f0;
    }

.txtBoxSubmit {
    display: block;
    text-decoration: none;
    width: 100%;
    max-width: none;
    padding: 10px;
    padding-left: 15px;
    margin-bottom: 15px;
    font-size: 18px;
    background-color: #7563f8;
    text-transform: uppercase;
    border: none;
    color: #fff;
    text-align: left;
    background-image: url(/Icons/LandingPage/icon-cauta-dentist.svg);
    background-repeat: no-repeat;
    background-position: right 15px center;
}

    .txtBoxSubmit:hover, .txtBoxSubmit:active, .txtBoxSubmit:after, .txtBoxSubmit:visited, .txtBoxSubmit:focus {
        color: white;
        text-decoration: none;
    }

.txtBoxClinica::placeholder, .txtBoxLocalitate::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #FAFAFA; /* darkgray */
    opacity: 1; /* Firefox */
}

.txtBoxClinica:-ms-input-placeholder, .txtBoxLocalitate:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #FAFAFA; /* darkgray */
}

.txtBoxClinica:-ms-input-placeholder, .txtBoxLocalitate:-ms-input-placeholder { /* Microsoft Edge */
    color: #FAFAFA; /* darkgray */
}

.wrapper-filtre-avansate {
    width: 100%;
    display: flex;
    justify-content: center;
}

#BtnFacilitati {
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #FFF;
    width: 150px;
    cursor: pointer;
}

    #BtnFacilitati div:first-of-type {
        display: flex;
        gap: 10px;
        align-items: center;
    }

    #BtnFacilitati i {
        font-size: 20px;
    }

    #BtnFacilitati.filtreSelectate {
        background-color: rgba(255, 255, 255, 0.5);
    }

    #BtnFacilitati #divWrapperCounter {
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 15px;
        color: #7563f8;
        background-color: #fff;
        padding: 5px;
        width: 20px;
        height: 20px;
        display: none;
    }

    #BtnFacilitati #divCounterNotificari {
        font-family: Arial;
        font-size: 12px;
        line-height: 10px;
        text-align: center;
    }


#counterCliniciGasite {
    opacity: 0;
    text-align: center;
    color: #fff;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    display: none;
}

    #counterCliniciGasite.showCounter {
        display: block;
        opacity: 1;
    }

h1 {
    font-size: 18px;
    line-height: normal;
    color: #FAFAFA; /* #fff */
    margin: 0;
    text-align: center;
}

.divDescriere {
    color: #FAFAFA; /* #fff */
    font-size: 18px;
    line-height: normal;
    text-align: center;
    padding: 40px 0 15px 0;
    margin: 0;
}

.categorie-dropdown img {
    max-width: 60px;
    max-height: 60px;
    object-fit: cover;
    vertical-align: bottom;
}

.categorie-dropdown p {
    margin-bottom: 0px;
    margin-left: 5px;
}

.categorie-dropdown .img {
    display: inline-block;
    max-width: 80px;
}

.categorie-dropdown .content {
    display: inline-block;
    width: calc(100% - 75px);
}

.select2-results__option[aria-selected=true] .categorie-dropdown p {
    color: white;
}

#modalFiltreCautareAvansata {
    position: absolute;
    bottom: 50px;
    left: 26vw;
    z-index: 40;
}

    #modalFiltreCautareAvansata #BtnCautaFiltru,
    #modalFiltreCautareAvansata #BtnResetFiltru,
    #modalFiltreCautareAvansata .btnInchide {
        border-radius: 5px !important;
    }

.markerLabel {
    color: #7363DE; /* #F10C26 */
    font-size: 13px;
    font-weight: bolder;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 5px;
    border-radius: 3px;
    text-align: center;
    position: absolute;
    bottom: 85%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 10px;
    max-width: 270px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}

.selected-marker-label {
    color: #F10C26;
    z-index: 25;
}

.marker-icon {
    transition: width 0.3s ease, height 0.3s ease;
}

#wrapperInfo {
    background-color: rgba(255, 255, 255, 0.3); /* rgba(255, 255, 255, 0.6); */
    padding: 10px;
    border-radius: 7px;
    margin-top: 15px;
    color: #fff; /* #717d95 */
    display: flex;
    gap: 15px;
    font-size: 14px;
    max-width: 360px;
    overflow-y: auto;
}

    #wrapperInfo i {
        font-size: 16px;
    }

#divCliniciGasite,
#divMediciGasiti {
    border: 1px solid #1FC468;
    border-radius: 5px;
    max-height: 200px;
    overflow-y: auto;
    background: white;
    position: absolute;
    top: 42px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0;
    display: none;
}

    /* styling scrollbar liste inputuri */

    /* Custom scrollbar styles */
    #divCliniciGasite::-webkit-scrollbar,
    #divLocalitatiGasite::-webkit-scrollbar,
    #divSpecializari::-webkit-scrollbar,
    #divMediciGasiti::-webkit-scrollbar {
        width: 8px; /* Width of the scrollbar */
    }

    #divCliniciGasite::-webkit-scrollbar-track,
    #divLocalitatiGasite::-webkit-scrollbar-track,
    #divSpecializari::-webkit-scrollbar-track,
    #divMediciGasiti::-webkit-scrollbar-track {
        background: transparent; /* Background of the track */
    }

    #divCliniciGasite::-webkit-scrollbar-thumb,
    #divLocalitatiGasite::-webkit-scrollbar-thumb,
    #divSpecializari::-webkit-scrollbar-thumb,
    #divMediciGasiti::-webkit-scrollbar-thumb {
        background: #8492AF; /* Color of the scrollbar thumb */
        border-radius: 5px; /* Rounded thumb */
    }

        #divCliniciGasite::-webkit-scrollbar-thumb:hover,
        #divLocalitatiGasite::-webkit-scrollbar-thumb:hover,
        #divSpecializari::-webkit-scrollbar-thumb:hover,
        #divMediciGasiti::-webkit-scrollbar-thumb:hover {
            cursor: pointer;
        }

    /* Hide arrows (default behavior for modern browsers) */
    #divCliniciGasite::-webkit-scrollbar-button,
    #divLocalitatiGasite::-webkit-scrollbar-button,
    #divSpecializari::-webkit-scrollbar-button,
    #divMediciGasiti::-webkit-scrollbar-button {
        display: none; /* Remove the buttons */
    }

    #divCliniciGasite .divParentSearch {
        max-width: 75%;
    }

    #divCliniciGasite .fara-clinici,
    #divMediciGasiti .fara-clinici {
        color: #8492af;
    }

.divSearchInput,
.divSearchInputTip2 {
    border-radius: 5px;
    position: relative;
    display: flex;
    align-items: center;
    border-radius: 5px;
    padding: 10px 10px 10px 20px;
    width: 100%;
    max-width: 360px;
    height: 40px;
}

.divSearchInput {
    border: 1px solid #AFA7EE;
    margin-bottom: 15px;
}

.divSearchInputTip2 {
    border: 1px solid #D9D9D9;
    background: rgba(247, 247, 247, 0.50);
    transition: 0.2s ease-in-out;
}

    .divSearchInputTip2:focus {
        border: 1px solid #7563F8;
        background: #F5F7FF;
        color: #AFA7EE;
    }

        .divSearchInputTip2:focus::placeholder {
            color: #AFA7EE;
        }

.divAranjeazaSearch {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
}

.lnkSetariCont {
    color: #fff; /* #7563f8 */
    font-weight: 600;
}

    .lnkSetariCont:hover, .lnkSetariCont:visited, .lnkSetariCont:focus {
        color: #fff; /* #7563f8 */
        text-decoration: none;
    }

.iconInput {
    width: 16px;
    height: 16px;
    margin-right: 5px;
}

.clinica-item {
    padding: 10px;
    border-bottom: 1px solid #f0f0f0;
    color: #585D70 !important;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .clinica-item:hover, .clinica-item:visited {
        background-color: #f0f0f0;
    }

.divIconDeleteInput {
    font-size: 18px !important;
    color: #AFA7EE; /* #8492af */
    cursor: pointer;
}

#divIconDeleteInputNumeClinica,
#divIconDeleteInputNumeMedic,
#divIconDeleteInputSpecializare {
    display: none;
}

.iconDropdownInput {
    font-size: 22px !important;
    color: #AFA7EE !important;
    cursor: pointer;
}

#divSpecializari {
    border: 1px solid #1FC468;
    border-radius: 5px;
    max-height: 200px;
    overflow-y: auto;
    background: white;
    position: absolute;
    top: 42px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0;
    display: none;
}

.divSearchSpecializare, .txtSpecializare {
    cursor: pointer !important;
}

.btnInapoiDefault {
    position: absolute;
    left: calc(100% - 30px);
    background-color: #fff;
    border-radius: 60px;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    width: 60px;
    height: 60px;
    box-shadow: 0px 1px 4px 1px rgba(0, 0, 0, 0.25);
    transform: translateY(0);
}

    .btnInapoiDefault.hideBtnInapoi {
        animation: slideOutBtnInapoi 0.5s ease-in-out forwards;
    }

    .btnInapoiDefault.showBtnInapoi {
        animation: slideInBtnInapoi 0.5s ease-in-out forwards;
    }

@keyframes slideInBtnInapoi {
    from {
        transform: translateY(-200px);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes slideOutBtnInapoi {
    from {
        transform: translateY(0);
        display: flex;
    }

    to {
        transform: translateY(-200px);
        display: flex;
    }
}

.btnInapoiDefault i {
    color: #7563F8;
    font-size: 30px !important;
}

/*setari reviewuri clinica*/
#divReviewMedieFinala {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    font-size: 14px;
}

    #divReviewMedieFinala .divStars {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 5px;
    }

    #divReviewMedieFinala #divAdaugaReview {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

#divTotalReview1 {
    font-weight: bolder;
    color: #333;
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
}

#divNrVoturiReview1,
#lnkNrVoturiReview,
#divFaraReview {
    color: #a3a3a3;
    text-decoration: none;
}

    #lnkNrVoturiReview:hover {
        text-decoration: none;
        color: #1FC468;
        cursor: pointer;
    }

#lnkAdaugaReview {
    padding: 7px 12px;
    border-radius: 5px;
    border: none;
    color: #1FC468;
    background-color: #ededed;
    font-size: 13px;
    text-decoration: none;
}

    #lnkAdaugaReview:hover,
    #lnkAdaugaReview:focus {
        text-decoration: none;
        background-color: #e5e4e4;
    }

.review-stars-container {
    display: flex;
    align-items: center;
}

    .review-stars-container .star {
        color: #ccc;
        font-size: 14px;
        margin-right: 3px;
    }

        .review-stars-container .star.filled,
        .review-stars-container .star.half-filled {
            color: #f39c12;
        }

.divParentStarReview {
    line-height: normal;
    margin: 5px 0;
    width: 100%;
    font-size: 22px;
    text-align: center;
    color: rgba(80, 89, 108, 0.70);
}

    .divParentStarReview:hover i {
        color: #f39c12;
        font-weight: bold;
        cursor: pointer;
    }

    .divParentStarReview i:hover ~ i {
        color: #8492AF;
        font-weight: normal;
    }

.starOn {
    color: #f39c12;
    font-weight: bold;
}

#modalAdaugaReview .modal-content {
    border-radius: 10px;
}

.modalReviewTitlu {
    color: #708090;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
    border-bottom: none;
    padding: 55px 0 30px 0;
}

.modalReviewBody {
    color: #8492AF;
    gap: 20px;
    padding: 0 50px;
}

.reviewTxtBox {
    min-height: 240px;
}

.reviewTxtBox,
.reviewTxtBox2 {
    max-width: none;
    width: 100%;
    padding: 10px 15px;
    border: 1.5px solid #D9D9D9;
    border-radius: 5px;
    font-size: 16px;
    line-height: normal;
    resize: none;
}

.divErrorRating,
.divErrorMesajReview {
    color: red;
    margin-bottom: 10px;
}

#modalAdaugaReview .eroare {
    border: 1.5px solid red;
}

.modalReviewFooter {
    padding: 40px 0;
    text-align: center;
}

#BtnAdaugaReview,
.btnCloseReviewModal {
    padding: 10px 40px;
    border: none;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: bolder;
    border-radius: 5px;
    cursor: pointer;
}

#BtnAdaugaReview {
    color: #fff;
    background-color: #22AD01;
}

.btnCloseReviewModal {
    background-color: #d3d3d3;
    color: black;
}

    .btnCloseReviewModal:hover {
        background-color: #c7c7c7;
    }

/*modal prezentare reviewuri*/

#modalPrezentareReviewuri .modal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    width: 100%;
}

#modalPrezentareReviewuri .divRatingDetaliat {
    display: flex;
    width: 100%;
}

#modalPrezentareReviewuri .ratingGeneral {
    width: 20%;
    min-width: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#divTotalReview2 {
    color: #8492AF;
    font-weight: bold;
    font-size: 45px;
    margin-bottom: 7px;
}

#divNrVoturiReview2 {
    margin-top: 3px;
    color: #a3a3a3;
}

#modalPrezentareReviewuri .ratingDefalcat {
    width: 80%;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px;
}

#modalPrezentareReviewuri .divBarStars {
    width: 10%;
    min-width: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    gap: 13px;
    padding: 0;
}

    #modalPrezentareReviewuri .divBarStars .div-rating-text {
        font-size: 13px;
        line-height: 13px;
        color: #8492AF;
    }

#modalPrezentareReviewuri .divBarParent {
    width: 85%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 13px;
    padding: 0;
}

    #modalPrezentareReviewuri .divBarParent .bar-parent {
        background-color: #eee;
        height: 13px;
        border-radius: 30px;
        width: 100%;
    }

#modalPrezentareReviewuri .bar-star {
    background-color: #1FC468;
    border-radius: 30px;
    height: 100%;
}

#modalPrezentareReviewuri .divNrRating {
    width: 5%;
    min-width: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 13px;
    padding: 0;
}

    #modalPrezentareReviewuri .divNrRating .div-rating-number {
        font-size: 13px;
        line-height: 13px;
        color: #8492AF;
    }


#modalPrezentareReviewuri .divReviewuriPacienti {
    margin-top: 30px;
    width: 100%;
    max-height: 50vh;
    overflow-y: auto;
}

    #modalPrezentareReviewuri .divReviewuriPacienti::-webkit-scrollbar {
        width: 8px; /* Width of the scrollbar */
    }

    #modalPrezentareReviewuri .divReviewuriPacienti::-webkit-scrollbar-track {
        background: transparent; /* Background of the track */
    }

    #modalPrezentareReviewuri .divReviewuriPacienti::-webkit-scrollbar-thumb {
        background: #8492AF; /* Color of the scrollbar thumb */
        border-radius: 5px; /* Rounded thumb */
    }

        #modalPrezentareReviewuri .divReviewuriPacienti::-webkit-scrollbar-thumb:hover {
            cursor: pointer;
        }

    /* Hide arrows (default behavior for modern browsers) */
    #modalPrezentareReviewuri .divReviewuriPacienti::-webkit-scrollbar-button {
        display: none; /* Remove the buttons */
    }

#modalPrezentareReviewuri .review-pacient {
    color: #8492AF;
    border-top: 1px solid #eee;
    display: flex;
    gap: 20px;
    padding: 15px;
    width: 100%;
}

#modalPrezentareReviewuri .review-pacient-header {
    min-width: 100px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: start;
}

    #modalPrezentareReviewuri .review-pacient-header .logoPacient {
        width: 54px;
        height: 54px;
        border-radius: 30px;
        border: 1px solid #1FC468;
        margin-bottom: 10px;
    }

    #modalPrezentareReviewuri .review-pacient-header .numePacient {
        font-weight: bold;
        margin-bottom: 0;
    }

    #modalPrezentareReviewuri .review-pacient-header .dataReviewPacient,
    #modalPrezentareReviewuri .review-pacient-header .mesajPacient {
        margin-bottom: 0;
    }

#modalPrezentareReviewuri .review-pacient-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.review-stars-pacient {
    margin-bottom: 5px;
}

/* modal pop-up */
#modalReviewInAsteptare .modal-body,
#modalReviewAprobat .modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#modalReviewInAsteptare h2,
#modalReviewAprobat h2 {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    color: #1FC468;
    letter-spacing: 0.1rem;
}

.iconCheckPopup {
    font-size: 25px;
    color: #fff;
    background-color: #1FC468;
    border-radius: 40px;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#modalReviewInAsteptare p,
#modalReviewAprobat p {
    font-size: 16px;
    margin-top: 10px;
}

#modalReviewInAsteptare .modal-header,
#modalReviewAprobat .modal-header {
    border-bottom: none;
    padding: 15px 0 0 0;
}

#modalReviewInAsteptare .modal-footer,
#modalReviewAprobat .modal-footer {
    border-top: none;
    padding: 20px 0;
}

#qrModal #divZonaReclamaPatrataQR {
    padding: 30px 15px 0 15px !important;
}

#qrModal .modal-content {
    padding: 30px 0 !important;
}
/*setari media queries*/
@media screen and (min-width: 1500px) {
    .wrapper-filtre-harta {
        width: 30%;
    }
}

@media screen and (max-width: 1400px) {
    .divFiltreParent {
        padding: 40px 70px 30px 70px;
        left: 120%;
        bottom: -125px;
    }

    .filtreAvansateWrapper {
        gap: 30px;
    }

    .categorieGrup {
        flex-direction: column;
        gap: 30px;
    }

    .divBtnFiltruWrapper {
        margin-top: 40px;
    }
}

@media only screen and (max-width: 1150px) {
    /*setari generale wrapper-uri*/

    .wrapper-filtre-harta {
        width: 30%;
    }

    .wrapper-harta {
        width: 70%;
    }

    #main-wrapper-modal-clinica {
        width: 30%;
    }

    #modalFiltreCautareAvansata {
        left: 30vw;
    }
}

@media screen and (max-width: 992px) {
    /*setari generale wrapper-uri: filtre standard si harta */
    .btnInapoiDefault {
        display: none;
    }

    #divPermisiuneLocatie .second-wrapper {
        font-size: 16px;
    }

    .wrapper-butoane-harta {
        position: absolute;
        top: 77px;
        left: 135px;
        height: 36px;
        width: 36px;
        gap: 10px;
    }

    #divLocatieUser {
        padding: 7px 8px;
    }

    #divToggleTipHarta {
        padding: 6.75px;
    }

        #divLocatieUser i,
        #divToggleTipHarta i {
            font-size: 20px;
        }

    .wrapper-harta {
        width: 100%;
        height: 100vh;
    }

    .wrapper-filtre-harta {
        position: inherit;
        top: 0;
        left: 0;
        width: 100%;
        height: 80px;
        padding: 25px 17px 0 17px;
        background-color: transparent;
        display: flex;
        justify-content: end;
        align-items: end;
        box-shadow: none;
    }

        .wrapper-filtre-harta.fundalInchis {
            height: 100vh;
            background-color: rgba(0, 0, 0, 0.5);
        }

        .wrapper-filtre-harta .divWrapperHeader {
            display: none;
        }

        .wrapper-filtre-harta .wrapper-filtre-avansate {
            display: none;
        }

        .wrapper-filtre-harta #wrapper-cautare-clinica-mobile {
            display: flex;
            justify-content: start;
            align-items: center;
            width: 100%;
            z-index: 5;
        }

        .wrapper-filtre-harta .divCautaMobile {
            display: flex;
            justify-content: start;
            align-items: center;
            position: absolute;
            top: 17px;
            width: 90%;
            max-width: 370px;
            background-color: #fff;
            color: slategray;
            border: 2px solid #4F44A0; /* #1FC468 */
            border-radius: 5px;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
        }

        .wrapper-filtre-harta #lnkCautaMobile {
            display: flex;
            justify-content: space-between;
            align-items: center;
            text-decoration: none;
            width: 100%;
            color: slategray;
            padding: 13px 15px;
        }

            .wrapper-filtre-harta #lnkCautaMobile:focus,
            .wrapper-filtre-harta #lnkCautaMobile:active {
                text-decoration: none;
            }

        .wrapper-filtre-harta .iconInapoi {
            font-size: 20px;
            padding: 13px 15px 13px 15px;
            background-color: #4F44A0;
            color: #FAFAFA;
        }

        .wrapper-filtre-harta .iconFiltre {
            font-size: 20px;
        }

        .wrapper-filtre-harta #lnkFiltreMobile {
            position: absolute;
            top: 77px;
            color: #fff;
            background-color: #4F44A0; /* #1FC468 */
            padding: 8px 20px;
            border-radius: 200px;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 15px;
            text-decoration: none;
        }

            .wrapper-filtre-harta #lnkFiltreMobile:focus {
                text-decoration: none;
            }

            .wrapper-filtre-harta #lnkFiltreMobile i {
                transform: scale(1.2);
            }

    .arata-wrapper-info {
        position: absolute;
        left: 0;
        transform: translateY(100%);
        z-index: 5;
        background-color: #fff !important;
        width: 90vw;
        max-width: 500px;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    }

    .wrapper-filtre-harta #lnkInfoMobile {
        position: absolute;
        top: 77px;
        left: 227px;
        z-index: 5;
        background-color: rgba(255, 255, 255, 0.8);
        border-radius: 30px;
        color: #717d95;
        font-size: 16px;
        width: 36px;
        height: 36px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-decoration: none;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    }

        .wrapper-filtre-harta #lnkInfoMobile:focus,
        .wrapper-filtre-harta #lnkInfoMobile:visited {
            text-decoration: none;
        }

    .wrapper-filtre-harta .wrapper-filtre-standard {
        position: absolute;
        top: 0;
        left: 0;
        width: 100vw;
        background-color: #4F44A0; /* #1FC468 */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: end;
        transform: translateY(-100%);
        transition: transform 0.5s ease-in-out;
        z-index: 30;
        padding: 70px 30px 30px 30px;
    }

        .wrapper-filtre-harta .wrapper-filtre-standard.show {
            transform: translateY(0);
            display: flex !important;
        }

        .wrapper-filtre-harta .wrapper-filtre-standard > * {
            width: 100%;
        }

    .wrapper-filtre-harta #btnCloseModalFiltre {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #fff;
        position: absolute;
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        border-radius: 40px;
        justify-content: center;
        align-items: center;
        box-shadow: 0px 1px 4px 1px rgba(0, 0, 0, 0.25);
    }

        .wrapper-filtre-harta #btnCloseModalFiltre i {
            line-height: normal;
            color: #7563f8;
        }

    #lnkCautaClinica {
        margin-top: 0;
    }

    #wrapperInfo {
        position: fixed;
        margin-left: 15px;
        background-color: rgba(255, 255, 255, 0.6);
        color: #717d95;
    }

    #counterCliniciGasite {
        position: absolute;
        left: 0;
        transform: translateY(100%);
        z-index: 5;
        color: #4F44A0;
        background-color: #fff !important;
        width: 90vw;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
        margin-left: 15px;
        transition: 600ms ease-in-out;
        display: block;
        max-width: 370px;
    }

    .lnkSetariCont, .lnkSetariCont:hover, .lnkSetariCont:visited, .lnkSetariCont:focus {
        color: #717d95;
    }

    /*modal individual clinica*/
    #modalDateClinica {
        box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
    }

        #modalDateClinica #main-wrapper-modal-clinica {
            width: 100%;
            max-width: 410px;
            z-index: 35;
        }

        #modalDateClinica .btn-modal-wrapper {
            max-width: 450px;
        }

    /*modal filtre cautare avansata*/
    #modalFiltreCautareAvansata {
        width: 100%;
        position: unset;
    }

    .divFiltreParent {
        position: sticky;
        background-color: #fff;
        width: 100vw;
        z-index: 40;
        margin: 0 -15px -35px;
        border-radius: 0;
        box-shadow: none;
    }

    /*modal navigatie*/
    #modalNavigatie .modal-content {
        width: 90%;
    }

    #modalNavigatie .modal-btn {
        padding: 10px;
        font-size: 14px;
        width: 100%;
        max-width: 150px;
    }
}

@media screen and (max-width: 850px) {
    #modalDateClinica #main-wrapper-modal-clinica {
        max-width: none;
    }

    #secondary-wrapper-modal-clinica {
        padding-top: 0;
        justify-content: center;
    }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
    .btnInchideFiltre {
        transform: none;
    }
}

@media all and (min-width:768px) {
    #modalPrezentareReviewuri .modal-dialog {
        width: 80%;
        max-width: 1000px;
        max-height: 90vh;
    }
}

@media all and (max-width:768px) {
    .filtreAvansateWrapper {
        gap: 30px;
        padding: 80px 50px 170px 50px;
    }

    #divPermisiuneLocatie .rand {
        flex-direction: column;
        gap: 15px;
    }

    #divPermisiuneLocatie .permisiuneText {
        text-align: center;
    }

    #divPermisiuneLocatie .second-wrapper {
        padding: 45px;
    }

    #divPermisiuneLocatie {
        padding: 25px 10px;
    }

    .modalReviewBody {
        padding: 0 15px;
    }
}

@media screen and (max-width: 500px) {
    .review-pacient {
        flex-direction: column;
    }

    .wrapper-filtre-harta #btnCloseModalFiltre {
        right: 30px;
    }
}
