:root {
    --light-trqz: rgba(213, 239, 238, 1);
    --trqz: #70d9cc;
    --blue: rgba(12, 131, 201, 1);
    --purple: #819ae1;
    --olive: #d9e3d6;
    --neon: #e0fc52;
    --green: #79ca9f;
    --lighter-green: #a1d1ab;
    --light-blue: #cdeefa;
}


html {
    font-size: 10px;
}

body {
    letter-spacing: 0.03em;

    direction: rtl;
    font-family: "Ping Hebrew";
    font-style: Normal;
    font-weight: 400;
    color: black;
    font-size: 2rem;


}

.refund-btn, .upgrade {
    display: none;
}

input, textarea, button {
    font-family: "Ping Hebrew";
}

header {
    border-bottom: 1px solid var(--lighter-green);
    height: 12.4rem;
    position: sticky;
    left: 0;
    top: 0;
    background-color: white;
    z-index: 99999;

}

header .menu li.emergency a span {
    font-weight: bold;
}

header .menu li.emergency a {
    background-image: url(gfx/icon_avatar.svg);
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 22px;
    background-size: auto;
    position: relative;
}


header .menu li.emergency a {
    background-image: none;
    padding-right: 35px;
}

header .menu li.emergency a:before,
header .menu li.emergency a:after {
    content: "";
    width: 28px;
    height: 29px;
    position: absolute;
    display: inline-block;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

header .menu li.emergency a:before {
    background-image: url(gfx/icon_emergency.svg);
}

header .menu li.emergency a:after {
    background-image: url(gfx/icon_emergency_hover.svg);
    opacity: 0;
}

.menu-block {
    padding: 18px 0;
}

header .menu li.emergency a:hover:before {
    opacity: 0;
}

header .menu li.emergency a:hover:after {
    opacity: 0.6;
}

header .menu li.emergency a:focus:after {
    opacity: 1;
}


.marpet-logo {
    width: 7.8rem;
    height: 6rem;
    background: url("../img/logo.svg");
    background-size: contain;
}

.arrow-home {
    height: 100%;
    position: absolute;
    right: 8rem;
    top: 0;
    background: url("../img/back_to_site.svg") no-repeat center right;
    background-size: 3.8rem;
    padding-right: 5.5rem;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--lighter-green);
}

.full-width {
    width: 100%;
    max-width: 180rem;
    margin-left: auto;
    margin-right: auto;
    padding: 0 5rem;
    box-sizing: border-box;
}


/*
CLINICS

 */

.basic-btn {
    background: #79ca9f;
    height: 5.5rem;
    padding-left: 5rem;
    padding-right: 5rem;
    border-radius: 2.75rem;
    color: white;
    font-size: 2.2rem;
    font-weight: 700;

    border: none;
    cursor: pointer;
    transition: .3s background;
    font-family: "Ping Hebrew";
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    margin: auto;
}

#ps-send {
    margin: 3.7rem 0;
    padding: 0 7rem;
}

.basic-btn:hover {
    background: #6cb08c;
}

.input-component {
    position: relative;
}

.input-component input {
    width: 100%;
    padding-left: 2rem;
    box-sizing: border-box;
}

input[type="text"], input[type="tel"], input[type="email"], input[type="number"], input[type='date'] {
    line-height: 2rem;
    background: none;
    border: none;
    box-sizing: border-box;
    border-bottom: 2px solid #000000;
    font-size: 2.4rem;
}

.populated .delete-btn {
    opacity: 1;
    visibility: visible;
}

.delete-btn.hide {
    opacity: 0 !important;
    visibility: hidden !important;
}

.delete-btn {
    position: absolute;
    width: 1.4rem;
    height: 2.8rem;
    background: transparent url(../img/X_1.svg) no-repeat center;
    background-size: contain;
    border: none;
    left: 0;
    padding: 0;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: .3s all;
    bottom: 0;
}

.error-text {
    text-align: right;
    font-size: 1.5rem;
    color: #ff2c2c;
    margin-top: 0.3rem;
    opacity: 0;
    visibility: hidden;
    transition: .3s all;
    position: absolute;
    top: 30px;
}

.indication-bubble {
    background-color: var(--neon);
    height: 6.6rem;
    padding: 0 2rem;
    margin-top: 2rem;
    line-height: 6.6rem;
    border-radius: 3.3rem 0 3.3rem 3.3rem;
    white-space: nowrap;
    transform: scale(0);
    transition: .3s all;
    transform-origin: top right;
    position: absolute;
}

.focused .form-label {
    transform: translateY(-2.2rem);
    font-size: .75em;
}

.wrapper {
    padding: 5rem 2vw;
}

.pa-content-view-head {
    margin-bottom: 3rem;
}

.pa-content-view-head h1 {
    font-size: 4rem;
    font-weight: 900;
}

.input-component label {
    position: absolute;
    pointer-events: none;
    opacity: .6;
}

.input-component label {
    font-size: 2.4rem;
}

.form-label {
}

label {
    cursor: pointer;
    transition: .3s all;
    overflow: hidden;
    position: relative;
}

.clinics-results-area {
    min-height: calc(100vh - 25rem);
    margin: 0;
}

.loader {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .8) center no-repeat;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: .3s all;
}

.loader.load-again {
    opacity: 1;
    visibility: visible;
    background: rgba(255, 255, 255, .8) url("../img/loader.svg") center no-repeat !important;
}

.loader.load-again .loader-animation {
    display: none !important;
}

.area-con-h {
    text-align: right;
    max-width: 70rem;
}

.area-con-h p {
    margin-bottom: 4rem;
}

.loader-animation {
    display: none;
}

.loader.show {
    opacity: 1;
    visibility: visible;
    background: rgba(255, 255, 255, .8) center no-repeat;
}

.loader.show .loader-animation {
    display: block;

}

.list-side {
    flex: 0 0 65rem;
    overflow: auto;
}

.clinic-autocolplete {
    width: 100%;
    margin-left: 4rem;
}

button.search {
    width: 4.8rem;
    height: 4.8rem;
    background: url("../img/button_search_outline.svg") no-repeat center;
    background-size: contain;
    border: none;
    padding: 0;
    cursor: pointer;
    cursor: unset;
}

.list-scroller {
    padding-left: 3rem;
    box-sizing: border-box;
    margin-top: 5rem;
}

#clinic-search, .clinics-results-area h2 {
    padding: 0 2rem;
    box-sizing: border-box;
}

.clinic-btn {
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    padding: 2rem;
    box-sizing: border-box;
    justify-content: space-between;
    width: 100%;
    transition: .3s all;
}

.clinics-list li.active .clinic-btn {
    background-color: #cdeefa;
}

.clinic-result-item {

    border-bottom: 1px solid #79ca9f;
}

.inner-item {
    justify-content: space-between;
}

.clinics-list h2 {
    font-weight: 700;
}

p, h2, h1 {
    margin: 0;
    text-align: right;
}

.area-con {
    width: 100%;
}

.clinics-list h2, .clinics-list p {
    font-size: 1.8rem;
    letter-spacing: 0.03rem;
}

a.phone {
    background: url(../img/phone.svg) no-repeat right center;
}

.clinic-result-item h3,
.clinic-result-item p,
.clinic-result-item a {
    margin: 0;
    font-size: 1.8rem;
}

.clinic-result-item h3 {
    margin-bottom: 1rem;
    text-align: right;
}

.phone-s a {
    font-size: 1.8rem;
    text-decoration: none;
    color: black;
    padding-right: 3rem;
    background-size: 2.8rem;
    white-space: nowrap;
    display: block;
}

#clinic-search {
    margin-top: 2rem;
}

.list-side {
    padding-left: 8rem;
    box-sizing: border-box;
}

.map-side.show {
    opacity: 1;
}

.map-side {
    flex-grow: 1;
    border-radius: 0 5rem 5rem 0;
    overflow: hidden;
    padding-right: 1rem;
    box-sizing: border-box;
}

.map-side {
    opacity: 0;
    transition: .3s all;
}

#map {
    height: 100%;
    width: 100%;
}

.pa-sidebar {
    flex: 0 0 30rem;

    min-height: 50rem;

    position: relative;

    align-self: flex-start;
    position: sticky;
    top: 16rem;
    padding-top: 2rem;
}

.pa-sidebar-bg {
    padding: 4rem 6rem 6rem 6rem;
    box-sizing: border-box;
    background: var(--light-blue);
    border-radius: 4rem;
    position: relative;
}

.pa-sidebar h2 {
    font-size: 2.5rem;
    margin: 0;
}

.side-bar-top {
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, .8);
}

.pa-sidebar:after {
    display: block;
    position: absolute;
    background: var(--light-blue);
    width: 4.7rem;
    height: 3rem;
    border-radius: 3rem 0 0 0;
    content: '';
    top: -1rem;
    left: 4rem;

}

.pa-sidebar:before {
    display: block;
    position: absolute;
    background: var(--light-blue);
    width: 4.7rem;
    height: 3rem;
    border-radius: 3rem 0 0 0;
    content: '';
    top: -1rem;
    left: 11rem;

}

.link {

    font-size: 2rem;
    font-weight: 900;
    color: #0c83c9;

    letter-spacing: 0.03em;

}

.sidebar-links {
    text-align: right;
    padding-top: 4rem;
}

.sidebar-links a {
    font-size: 2rem;
    color: black;
    text-decoration: none;
}

.sidebar-links li {
    margin-bottom: 2.6rem;
}

.sidebar-links .current-menu-item a {
    font-weight: 900;
}

.pa-sidebar .log-out {
    text-align: right;
    text-decoration: none;
    margin-top: 12rem;
    display: block;

}


.add-btn {
    cursor: pointer;
    border-radius: 1rem;
}

.blink {
    font-weight: 700 !important;
}

.add-btn {
    border: 2px dashed #79ca9f;
    background: transparent;
    padding: 1rem 1rem 1rem 2rem;
    font-size: 2rem;
    display: flex;
    align-items: center;
    width: auto;
    margin: 0 15px;
    min-height: 60px;
}

.add-btn:before {
    content: '';
    display: block;
    width: 3.6rem;
    height: 3.6rem;
    flex: 0 0 3.6rem;
    background: url(../img/add.svg) no-repeat center;
    margin-left: 2rem;
    background-size: 3.6rem;
}

.add-btn:hover:before {
    animation: 1s tilt;
}

.add-btn.btn-route:before,
.add-btn.btn-worm:before {
    display: none;
}

.pa-content-view {
    flex-grow: 1;
    padding-right: 6rem;
}

.users-pets-list > li {
    background-color: #99e2d930;
    border-radius: 2rem;
    padding: 5rem;
    box-sizing: border-box;
    width: 100%;
    margin-bottom: 5rem;
}

.pet-icon {
    flex: 0 0 11.1rem;
    height: 11.1rem;

    background-size: 11.1rem;
    background-position: center;
    background-repeat: no-repeat;
}

.dog .pet-icon {
    background-image: url(../img/dog_icon.svg);
}

.pet-card {
    background-color: white;
    border: 0.1em solid #79ca9f;
    border-radius: 2rem;
    padding: 3.6rem;
    box-sizing: border-box;
    height: 30rem;
}

.pet-card .pet-main {
    margin-right: 1rem;
}

.pet-card .pet-main h2 {
    font-size: 3rem;
    font-weight: 900;
}

.pet-card .pet-breed {
    font-size: 2rem;
    font-weight: 900;
    margin: .5rem 0;
}

button.upgrade {
    height: 4rem;
    border-radius: 2rem;
    background-color: var(--green);
    border: none;
    color: white;
    font-size: 2.2rem;
    padding: 0 2rem;
    align-self: flex-end;
    margin-right: 1.5rem;
    cursor: pointer;

}

.pa-content-view {
    font-size: 2rem;
}

span.value {
    display: block;
    font-weight: 700;

}

.pet-chip, .pet-age {

}

.pet-chip {
    padding-right: 4rem;
    border-right: 1px solid #79ca9f;
}

.pet-age {
    padding-left: 4rem;
}

.pet-card {
    flex: 0 0 50rem;
}

.pet-card-bottom {
    padding-top: 4.5rem;
}

.last-visits-list p {
    display: flex;

}

.last-visits-list {
    flex-grow: 1;
}

.pet-list-item-left-head h2 {
    font-size: 2rem;
}

.pet-list-item-left-head {
    justify-content: space-between;
    align-items: center;
    width: 100%;


}

.last-visits-list li {
    margin: 2rem 0;
}

.last-visits-list .label {
    padding-left: 2rem;
}

.last-visits-list {
    /*padding-top: 3rem;*/
}

.negative {
    height: 4rem;

    border: 0.2rem solid #79ca9f;
    border-radius: 2rem;
    color: #79ca9f;
    font-size: 2.2rem;
    background: none;
    padding: 0 2rem;
}

.link {
    color: var(--blue);
    font-size: 2rem;
    font-weight: 400;
    background: none;
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: .3s all;
}

.link:hover {
    color: #00458a;
}

.pet-list-item-left {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding-right: 8rem;
}

.basic-btn:disabled {
    opacity: .3;
    filter: grayscale(1);
    cursor: not-allowed;
}

.green-box {
    background-color: #E0F6F3;
    padding: 6rem;
    box-sizing: border-box;
    border-radius: 2rem;
}

.green-box .details .u {
    padding: 0 8rem;
    border-left: 1px solid #79ca9f;
}

.u .label {
    margin-bottom: 1rem;
    display: block;
}

.green-box .details .u:first-child {
    padding-right: 0;
}

.green-box .details .u:last-child {
    border-left: none;
}

.green-box .details {
    padding-bottom: 3rem;
}

.clinics-results-area h2 {
    font-size: 4rem;
    font-weight: 700;
}

.clients-mailing-address {
    padding-top: 7.7rem;
}

.clients-mailing-address h2 {
    font-size: 2rem;
}

.input-component[data-name="city"],
.input-component[data-name="street"] {
    flex: 0 0 20rem;
    margin-left: 5rem;
}

.input-component[data-name="house-number"],
.input-component[data-name="flat-number"],
.input-component[data-name="entrance"] {
    flex: 0 0 10rem;
    margin-left: 5rem;
}


.input-component[data-name="city2"],
.input-component[data-name="street2"] {
    flex: 0 0 20rem;
    margin-left: 5rem;
}

.input-component[data-name="house-number2"],
.input-component[data-name="flat-number2"],
.input-component[data-name="entrance2"] {
    flex: 0 0 10rem;
    margin-left: 5rem;
}


input:focus {
    outline: 0;
    border-color: rgba(121, 202, 159, 1);
}

.mail-details input, .mail-details label {
    font-size: 2rem;
}

.f-1, .f-2 {
    margin-top: 3rem;
}

.custom-checkbox {
    width: 2.3rem;
    height: 2.3rem;
    border: 1px solid black;
    border-radius: 4px;
    margin-left: 1rem;
    position: relative;
}

.custom-checkbox:before {
    content: '';
    display: block;
    position: absolute;
    width: 1.7rem;
    height: 1.7rem;
    background: #79ca9f url(../img/vee.svg) no-repeat center;
    background-size: 1.1rem 0.8rem;
    border-radius: 2px;
    left: 0.3rem;
    top: 0.3rem;
    opacity: 0;
    transition: .3s all;
}

input[type="checkbox"]:checked + .custom-checkbox:before {
    opacity: 1;
}

input[type="checkbox"] {
    display: none;
}

.living-address h2 {
    padding-top: 5rem;
}

.different-addresses-label {
    margin-top: 3rem;
}

.oh {
    overflow: hidden;
}

.living-address {
    height: 0;

    opacity: 0;

    transform-origin: top right;
}

.clinics-list li {
    transition: .3s all;
}

.cc-number {
    background: url("../img/icon_cc.svg") right center no-repeat;
    background-size: 5.5rem;
    line-height: 4rem;
    padding-right: 6.5rem;
}

.change-card-box .input-component label {
    font-size: 2rem;
}

.expiry-com {
    flex: 0 0 15rem;
}

.error input {
    border-color: #ff2c2c;

}

.error .error-text {
    opacity: 1;
    visibility: visible;
}

.input-component.error {
    animation: no-no .5s;
}

.cc-sl-2-btns button {
    margin: 0;
}

.cc-sl-2-btns button#save-payment {
    margin-left: 4rem;
}

#ps-send {
    transition: .3s all;
}

.cc-green-box {
    padding: 0;
    position: relative;
    z-index: 99999;
}

.inactive-list {
    margin-top: 3rem;
    height: 0;
    overflow: hidden;
}

.arr {
    transform: rotate(-90deg) scaleY(1.2);
    display: block;
    color: var(--blue);
    margin-right: .5rem;
    transition: .5s all;
}

.inactive-area.extended .arr {
    transform: rotate(90deg) scaleY(1.2);
}

.inactive-list > li {
    opacity: .6;
}

.inactive-area .package {
    color: #f24942 !important;
    font-weight: 700;
}

.cmb {
    font-size: 3.6rem;
    padding-left: 1rem;
}

.living-address.show {
    opacity: 1;
    height: auto;
}

.cc_form {
    transition: .3s all;
}

.cc-green-box .cc-slide.is-active.extndd {
    height: 24rem;

}

.cc-green-box .cc-slide {
    transition: .3s all;
}

.cc-green-box .cc-slide {
    padding: 0 6rem;
    box-sizing: border-box;
    height: 15rem;
    display: flex;
    align-items: center;
}

.cc-btns-flex {
    height: 5.5rem;
    display: flex;
    align-items: center;
}

.cc-btns-splide {
    margin-top: 5rem;
}

.cc-btns-splide .splide__track {
    overflow: visible !important;
}

.cc-btns-splide .splide__track .splide__slide.is-active {
    transition-delay: .3s;
    opacity: 1;
}

.cc-btns-splide .splide__track .splide__slide {
    opacity: 0;
    transition: .3s all;
}

.otp-splide .splide__track .splide__slide.is-active {
    transition-delay: .3s;
    opacity: 1;
}

.otp-splide .splide__track .splide__slide {
    opacity: 0;
    transition: .3s all;
}

#change-card {
    margin: 0;
}

#cancel {
    height: 5.5rem;


    border-radius: 2.75rem;
}

.cc-sl-2-btns button {
    padding-left: 8rem;
    padding-right: 8rem;
}

@keyframes no-no {
    0% {
        transform: translateX(0);
    }
    20% {
        transform: translateX(-1rem);
    }

    40% {
        transform: translateX(.5rem);
    }

    60% {
        transform: translateX(-.3rem);
    }

    80% {
        transform: translateX(.2rem);
    }

    100% {
        transform: translateX(0);
    }

}

@keyframes tilt {
    0% {
        transform: scale(1) rotate(0);
    }
    25% {
        transform: scale(1.1);
    }

    50% {
        transform: scale(1.1) rotate(30deg);
    }
    75% {
        transform: scale(1.1) rotate(-30deg);
    }
    100% {
        transform: scale(1) rotate(0);
    }
}


/*log in*/
.login-wrapper {
    width: 95%;
    margin: 2rem auto;
    height: calc(100vh - 20rem);
    background-color: #d5efee;
    border-radius: 40px;
    min-height: 70rem;
}

.login-frame {
    width: 84.6rem;
    background-color: white;
    height: 65vh;
    border-radius: 0 182px 182px 182px;
    padding: 7rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 57rem;

}

.otp-step-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.otp-step-1 h2 {
    font-size: 4rem;
    margin-bottom: 2rem;
}

#login-otp-1 {
    margin: 6rem 0;
}

.otp-step-1 .input-component {
    flex: 0 0 48%;
}

.pawn-container {
    height: 15rem;
}

.pawn, .pawn2 {
    right: 0;
    left: 0;
    margin: auto;
}

.sizer {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pawn {
    width: 32rem;
    margin: auto;
}

.pawn.hide, .pawn2.hide {
    opacity: 0;
}

.pawn2, .pawn3 {
    width: 32rem;
    margin: 0 auto 0 auto;
}

.otp-step-2 * {
    text-align: center;
    justify-content: center;
}

.otp-step-2 h2 {
    font-size: 5rem;
    font-weight: 800;

}

.oec {
    margin: 2rem 0;
}

.otp-step-2 .input-component label {
    text-align: center;
    width: 100%;
}

.otp-step-2 .input-component input {
    padding-left: 0;
}

.otp-step-2 .input-component {
    width: 28rem;
    text-align: center;
    margin: 3rem auto 7rem;
}

body.popup-open,
.popup-open {
    overflow: hidden;
}

.popup {
    position: fixed;
    z-index: 1100000;
    width: 100%;
    height: 100%;
    right: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    top: 0;
}

.popup.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.popup:before {
    content: "";
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    width: 100%;
    height: 100%;
}

.popup .wrapper {
    width: 960px;
    height: 700px;
    background-color: #fff;
    border: 2px solid rgba(121, 202, 159, 1);
    border-radius: 20px;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    overflow: hidden;
}


.popup .wrapper .close {
    width: 34px;
    height: 34px;
    position: absolute;
    left: 30px;
    top: 30px;
    cursor: pointer;
    z-index: 100;
}

.popup .wrapper .close:after,
.popup .wrapper .close:before {
    content: "";
    background-color: #a1d1ab;
    position: absolute;
    left: 0;
    top: 0;
    width: 34px;
    height: 6px;
    right: 0;
    bottom: 0;
    margin: auto;
    transform: rotate(-45deg);
}


.popup .wrapper .close:after {
    transform: rotate(45deg);
}

.popup .emergency-style-1 .send input {
    padding: 10px 20px;
}

.route-popup .wrapper,
.worm-popup .wrapper {
    width: 400px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 50px;
}


.popup-btn {
    border: none;
    text-decoration: none;
    border-radius: 30px;
    padding: 5px 30px;
    margin-top: 12px;
    font-size: 18px;
    line-height: 30px;
    display: inline-block;
    background-color: #79ca9f;
    color: #fff;
    -webkit-appearance: none;
    cursor: pointer;
    font-weight: 800;
}

.worm-popup .title,
.route-popup .title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
}

.popup img {
    max-height: 100%;
}

.popup .title {
    text-align: center;
    margin-top: 40px;
    padding: 0 20px;
}

.popup .subtitle {
    text-align: center;
    padding: 0;
    padding-top: 10px;
}

.popup .title p, .popup .subtitle p {
    margin: 0;
    padding: 0;
}

.popup .wrapper .close:hover:after,
.popup .wrapper .close:hover:before {
    background-color: #6db08c;
}

.popup .wrapper .close:focus:after,
.popup .wrapper .close:focus:before {
    background-color: #76e1a9;
}

.not-found-popup {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, .4);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: .3s all;
}

.popup-frame {
    background: white;
    width: 75rem;
    border-radius: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 7rem 0 5rem;
    box-sizing: border-box;
    transform: scale(0);
    opacity: 0;
    transition: .3s all;
    transition-delay: .3s;
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.275); /* easeOutBack */


}

.not-found-popup.show .popup-frame {
    opacity: 1;
    transform: scale(1);
}

.not-found-popup.show {
    opacity: 1;
    visibility: visible;
}

.popup-frame h2 {
    font-size: 4rem;
    font-weight: 900;
    margin-top: 6rem;
}

.popup-frame .lo-m {
    font-size: 2.4rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 6rem;
}

.popup-frame .basic-btn {
    margin-top: 3rem;
}

#close-not-found {
    width: 3.4rem;
    height: 3.4rem;
    background: url("../img/green_x.svg");
    background-size: contain;
    border: none;
    position: absolute;
    left: 3rem;
    top: 3rem;
    padding: 0;
    cursor: pointer;
    transition: .3s all;
}

#close-not-found:hover {
    transform: rotate(90deg);
}

.not-found-image {
    width: 29.7rem;
    height: 20.9rem;
    background: url('../img/not-found.svg') no-repeat center;
    background-size: contain;
}

.clncs {
    padding-right: 8rem;
}

table {
    border-collapse: collapse;
    width: 100%;
}

.visits-history-table thead {
    font-size: 1.6rem;
}

.visits-history-table tr {
    border-bottom: 1px solid #a1d1ab;
    height: 7rem;

}

.visits-history-table thead td {
    white-space: nowrap;
}

.visits-history-table tbody td {
    font-weight: 700;
    font-size: 2rem;

    box-sizing: border-box;

}

.all-visits-page header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
}

.visits-history-table tbody td.ftd {
    font-weight: 400;
}

.clinics-list .mobile-data {
    display: none !important;
}

.visits-history-table td {
    padding-right: 8rem;
}

.visits-history-table td.ftd {
    padding-right: 0 !important;
}

.all-visits-page h1 {
    font-weight: 900;
    margin: 8rem 0 6rem;
}

.ess-width {
    max-width: 138rem;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}

.pa-cc-splide .splide__track {

    transition: 0.5s all !important;

}

.roe-content {
    max-width: 1200px;
    width: 100%;
}

.roe-content button a {
    margin: 24px 0;
}

.roe-content input[type="text"] {
    width: 100%;
}

.file-upload-drop-area {
    border: 2px dashed #79ca9f;
    background: transparent;
    padding: 1rem 3rem 1rem 3rem;
    display: flex;
    align-items: center;
    width: 41rem;
    position: relative;
    border-radius: 1rem;
    z-index: 3;
}

.file-upload-drop-area div {
    z-index: 1;
}

.file-upload-drop-area .error-text {
    bottom: -29px !important;
    right: 0 !important;
    top: unset !important;
}

.file-upload-drop-area::before {
    content: '';
    display: block;
    width: 3.6rem;
    height: 3.6rem;
    flex: 0 0 3.6rem;
    background: url(../img/upload_file.svg) no-repeat center;
    margin-left: 2rem;
    background-size: 2.5rem;
}

.file-upload-drop-area input {
    opacity: 0;
    z-index: -1;
    position: absolute;
}

.roe-form-control {
    margin-top: 4rem;
    position: relative;
}

.roe-form-control p {
    margin-bottom: 1rem;

}

.file-upload-selected-file p {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin: 0;
}

.file-upload-selected-file {
    border: 2px solid #79ca9f;
    background: rgba(0, 0, 0, 0.06);
    padding: 1rem 3rem 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
    border-radius: 1rem;
    max-width: min-content;
    margin-right: 24px;
    overflow: hidden;
}

.file-upload-selected-file::before {
    content: '';
    display: block;
    width: 3.6rem;
    height: 3.6rem;
    flex: 0 0 3.6rem;
    background: url(../img/pdf-file.svg) no-repeat center;
    background-size: auto;
    margin-left: 2rem;
    background-size: 3.6rem;
}

.file-upload-selected-file .delete {
    content: '';
    display: block;
    width: 3.6rem;
    height: 3.6rem;
    flex: 0 0 3.6rem;
    background: url(../img/green_x.svg) no-repeat center;
    /*margin-left: 2rem;*/
    background-size: 3rem;
    cursor: pointer;
}


.emergency-style-1 {
    display: flex;
    flex-direction: row;
    margin-top: 36px;
}

.emergency-style-1 .emergency-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.emergency-divider {
    width: 1px;
    position: relative;
    border-left: 1px solid black;
}

.emergency-divider div {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #252525;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background-color: white;
    color: #252525;
    top: 50%;
    position: relative;
    transform: translateY(-50%) translateX(+50%);
}

.emergency-style-1 input[type="submit"] {
    max-width: 240px;
    width: 100%;
}

.emergency-content {
    text-align: center;
}

.emergency-content .title {
    text-align: center;
    margin-top: 40px;
    padding: 0 20px;
}

.emergency-content .title p {
    font-size: 35px;
    line-height: 42px;
    margin: 0;
    padding: 0;
    font-weight: 600;
    text-align: center;
}

.emergency-content .list {
    margin-top: 60px;
    padding: 0 100px;
}

.emergency-content .list > div {
    margin: auto;
    width: calc(50% - 40px);
    text-align: center;
    position: relative;
    display: inline-block;
    transition: all 0.3s;
    font-size: 20px;
}

.emergency-content .placeholder {
    top: 5px;
}

.emergency-content .list > div.close-disable span.close-popup {
    opacity: 0;
    visibility: hidden;
    top: 10px;
    width: 19px;
    height: 19px;
    background-size: auto;
    left: 0;
    bottom: auto;
    background-image: url(gfx/close.svg);
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
    right: auto;
    font-size: 22px;
    cursor: pointer;
    border-radius: 50%;
    position: absolute;
    margin: auto;
    transition: all 0.3s;
    border: 0 none;
    color: #000;
    list-style-type: none;
    outline: 0 none;
    vertical-align: baseline;
    padding: 0;
    font-family: "Ping HL", "Arial", sans-serif;
    font-weight: normal;
}

.emergency-content .list > div input {
    font-size: 24px;
    line-height: 40px;
    border-bottom: 1px solid #000;
    text-align: right;
    width: 100%;
    text-decoration: none;
    transition: all 0.3s;
    color: #000;
    list-style-type: none;
    outline: 0 none;
    vertical-align: baseline;
    margin: 0;
    padding: 0;
    font-family: "Ping HL", "Arial", sans-serif;
    font-weight: normal;
}

.emergency-content .send {
    padding-top: 75px;
    text-align: center;
}

.emergency-content .send input {
    font-size: 22px;
    line-height: 35px;
    padding: 10px 90px;
    border-radius: 50px;
    display: inline-block;
    background-color: #79ca9f;
    color: #fff;
    -webkit-appearance: none;
    font-weight: 800;
    text-decoration: none;
    border: none;
}

.emergency-content .send input:hover {
    background-color: #6db08c;
}

.emergency .branches {
    margin: 0;
    padding: 15px 30px;
    list-style-type: none;
    text-align: right;
    height: 180px;
    overflow: auto;
}

.emergency .error-message {
    color: #ff2c2c;
    font-size: 15px;
    text-align: right;
    position: absolute;
    bottom: -25px;
    opacity: 0;
    visibility: hidden;
}

.emergency #phone-div.message-active .error-message,
.emergency #branches-div.message-active .error-message {
    opacity: 1;
    visibility: visible;
}

.emergency #phone-div.message-active input,
.emergency #branches-div.message-active input {
    border-bottom: 1px solid #ff2c2c;
}

.emergency .branches-wrapper {
    position: absolute;
    top: 41px;
    border: 1px solid #000;
    height: 180px;
    background-color: #fff;
    width: 100%;
    overflow: hidden;
    border-radius: 0 0 35px 35px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.emergency .branches:after {
    content: '';
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0+0,1+100 */
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=0); /* IE6-9 */
    position: absolute;
    bottom: 0;
    height: 100px;
    width: 0;
    right: 0;
    pointer-events: none;
}

.emergency .list > div .branches-wrapper.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.emergency
.branches li {
    cursor: pointer;
    margin: 5px 0;
}

.emergency
.branches li button {
    border: none;
    padding: 0 20px;
    height: 45px;
    line-height: 45px;
    background-color: transparent;
    cursor: pointer;
    width: 100%;
    text-align: right;
}

.emergency
.branches li:hover {
    background-color: #D9E3D6;
}

.emergency
.error {
    text-align: center;
    padding-bottom: 200px;
}

.emergency
.error .description {
    padding-top: 40px;
    padding-bottom: 40px;
}

.emergency .error .image {
    height: 375px;
}

.emergency .error .image img {
    display: block;
    margin: auto;
    max-height: 100%;
}

.emergency .error a {

}

.emergency .error .description p {
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
}

.emergency .message {


    height: 100%;
    width: 100%;
    text-align: center;
    background-color: #fff;
    display: none;
    z-index: 10;
}

.emergency .message.active {
    display: block;
}

.emergency .message p {
    margin: 0;
    max-width: 600px;
    margin: auto;
}

.emergency .message i {
    background-image: url(/wp-content/themes/marpet/gfx/icon-v.svg);
    width: 114px;
    height: 114px;
    display: block;
    margin: auto;
    margin-bottom: 35px;
    margin-top: 200px;

}

.message i {

}

.pa-content-view.hide {
    display: none;
}

.pa-invoice-content{
    margin-top: 32px;
    max-height: 800px;
    overflow-y: auto;
}
.pa-invoice-item{
    display: flex;
    flex-direction: row;
    margin: 20px 0;
    justify-content: space-between;
    /*font-size: 1.1em;*/
    /*align-items: center;*/
}

.pa-invoice-item-row-right{
    background: #79ca9f;
    padding: 0 24px;
    border: none;
    font-family: "Ping Hebrew";
    display: flex;
    justify-content: start;
    align-items: center;
    text-decoration: none;
    border-radius: 0 2.75rem 2.75rem 0;
    background-color: #CAEAE6;
    flex: 1 1 auto;
    margin-left: 8px;
    flex-wrap: wrap;
}
.pa-invoice-item-row-right div{
    margin: 0 12px
}
.pa-invoice-content{
    /*max-width: max-content;*/
}



@media (max-width: 480px) {
    .file-upload-selected-file::before {
        display: none;
    }

    header .menu li.emergency a {
        padding-right: 22px;
        background-size: auto;
    }

    header .menu li.emergency a {
        padding-right: 35px;
    }

    header .menu li.emergency a:before,
    header .menu li.emergency a:after {
        width: 28px;
        height: 29px;
    }

}

@media (max-width: 600px) {
    .pa-invoice-item-row-right{
        flex-direction: column;
        justify-content: unset;
        align-items: start;
    }
    .pa-invoice-separator {
        display: none;
    }
}
@media (max-width: 768px) {

    .emergency-style-1 {
        flex-direction: column;
    }

    .emergency-style-1 .emergency-content {
        width: 100%;
    }

    .emergency-divider {
        width: unset;
        height: 1px;
        border-left: unset;
        border-top: 1px solid black;
        margin: 40px 0 30px;
    }

    .emergency-divider div {
        right: 50%;
    }


    .file-upload-drop-area .error-text {
        position: unset;
    }

    .pa-invoice-item-row-right{
        border-radius: 0 2.75rem 2.75rem 2.75rem;
        padding: 16px;
    }

    .pa-invoice-content .basic-btn{
        padding: 0 16px;
    }

}

@media (max-width: 1200px) {
    .file-upload-drop-area {
        width: 100%;
    }

    .pa-roe-file-upload-control {
        flex-wrap: wrap;
    }

    .file-upload-selected-file {
        margin-top: 24px;
        width: 100%;
        margin-right: 0 !important;
        max-width: unset;
    }

    .popup .emergency-style-1 .list > div {
        width: calc(80% - 30px) !important;
        margin-bottom: 24px;
    }

    .popup .emergency-style-1 .send {
        padding-top: 30px;
    }

    header .menu li.emergency a {
        padding-right: 22px;
        background-size: auto;
    }

    header .menu li.emergency a {
        padding-right: 35px;
    }

    header .menu li.emergency a:before,
    header .menu li.emergency a:after {
        width: 28px;
        height: 29px;
    }
}

@media (min-width: 1200px) {
    .popup .emergency-style-1 .list > div {
        width: calc(100% - 30px) !important;
        margin-bottom: 24px;
    }

    .popup .emergency-style-1 .send {
        padding-top: 30px;
    }

    .emergency-style-1 .title p {
        font-size: 30px !important;
        line-height: 38px !important;
    }

    header .menu li.emergency a {
        padding-right: 22px;
        background-size: auto;
    }

    header .menu li.emergency a {
        padding-right: 35px;
    }

    header .menu li.emergency a:before,
    header .menu li.emergency a:after {
        width: 27px;
        height: 29px;
    }
}

@media (min-width: 1500px) {
    .popup .emergency-style-1 .title {
        margin-top: 30px;
    }

    header .menu li.emergency a {
        padding-right: 22px;
        background-size: auto;
    }

    header .menu li.emergency a {
        padding-right: 35px;
    }

    header .menu li.emergency a:before,
    header .menu li.emergency a:after {
        width: 28px;
        height: 29px;
    }

    .emergency-style-1 .title p {
        font-size: 30px !important;
        line-height: 38px !important;
    }

    .popup .emergency-style-1 .send {
        padding-top: 30px;
    }

    .popup .emergency-style-1 .list > div {
        width: calc(100% - 30px) !important;
        margin: 0 20px 24px;
    }

    .popup .emergency-style-1 .list {
        padding: 0 80px;
    }

}

@media screen and (max-width: 1023px) {
    .cc-sl-2-btns a {
        padding-left: 4rem !important;
        padding-right: 4rem !important;
        height: 4rem !important;
        font-size: 1.8rem;
    }
}


.test {
}





