﻿* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    /* Colors: */
    --unnamed-color-f90101: #F90101;
    --r-1-g-185-b-249: #01B9F9;
    --unnamed-color-19acff: #19ACFF;
    --unnamed-color-434343: #434343;
    --unnamed-color-115f8b: #115F8B;
    --unnamed-color-ab19ff: #AB19FF;
    --unnamed-color-9bff12: #9BFF12;
    --unnamed-color-c6c6c6: #C6C6C6;
    --unnamed-color-000000: #000000;
    --unnamed-color-F5F5F5: #F5F5F5;
    --unnamed-color-ffffff: #ffffff;
    --min-width: 1120px;
}

@font-face {
    font-family: 'Assistant-Bold';
    src: url('/Content/fonts/Assistant/Assistant-Bold.ttf') format('truetype');
    font-display: swap;
}

/*@font-face {
    font-family: 'Assistant-ExtraBold';
    src: url('/Content/fonts/Assistant/Assistant-ExtraBold.ttf') format('truetype');
    font-display: swap;
}*/

/*@font-face {
    font-family: 'Assistant-ExtraLight';
    src: url('/Content/fonts/Assistant/Assistant-ExtraLight.ttf') format('truetype');
    font-display: swap;
}*/

/*@font-face {
    font-family: 'Assistant-Light';
    src: url('/Content/fonts/Assistant/Assistant-Light.ttf') format('truetype');
    font-display: swap;
}*/

/*@font-face {
    font-family: 'Assistant-Medium';
    src: url('/Content/fonts/Assistant/Assistant-Medium.ttf') format('truetype');
    font-display: swap;
}*/

@font-face {
    font-family: 'Assistant-Regular';
    src: url('/Content/fonts/Assistant/Assistant-Regular.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Assistant-SemiBold';
    src: url('/Content/fonts/Assistant/Assistant-SemiBold.ttf') format('truetype');
    font-display: swap;
}

[ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak {
    display: none !important;
    transition: all ease-in-out 0.5s !important;
}

@keyframes washing-machine-on {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(720deg);
    }
}

@keyframes show-page {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes hide-page {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes slide-in {
    from {
        margin: 0 1000px;
    }

    to {
        margin: 0 0px;
    }
}

@keyframes slide-out {
    from {
        margin: 0 0px;
    }

    to {
        margin: 0 1000px;
    }
}

@keyframes show_border_1 {
    from {
        /*border-bottom: 1px solid #FFFFFF;
        border-bottom-width: thin;*/
        background: linear-gradient(#fff, #fff) bottom / 0% 2px no-repeat;
    }

    to {
        /*border-bottom: 3px solid #FFFFFF;
        border-bottom-width: thick;*/
        background-size: 100% 12px;
    }
}


#wrapLayout {
    animation: show-page;
    animation-duration: 0.1s;
    animation-fill-mode: forwards;
    min-width: 1330px;
}

*:disabled,
*[disabled] {
    /*pointer-events:none;*/
    opacity: 0.5 !important;
    cursor: not-allowed !important;
}

    *:disabled div,
    *[disabled] div {
        pointer-events: none;
    }

*:focus {
    outline: none;
}

h1 {
    font-size: 2.9rem; /*0px;*/
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 16px;
}

p {
    font-size: 20px;
}

.blue-btn {
    background-color: var(--r-1-g-185-b-249);
    color: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    font-family: 'Assistant-Bold';
    border: none;
    outline: none;
    cursor: pointer;
}

input[type=text],
input[type=tel],
input[type=number],
input.mobile-like,
textarea {
    border: none;
    border-bottom: solid 1px #fff;
    margin: 9px 0;
    width: 100%;
    padding: 5px;
    background: transparent;
    outline: none;
    color: #fff;
    font-family: 'Assistant-SemiBold';
    font-size: 20px;
}

    input.mobile-like::placeholder,
    textarea::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
        color: #fff;
        opacity: 1; /* Firefox */
    }

.flex {
    display: flex;
}

.bold {
    font-weight: bold;
}

.black-seporetor {
    height: 0px;
    width: 100%;
    border: 1px solid var(--unnamed-color-434343);
}

.white-seporetor {
    height: 0px;
    width: 100%;
    border: 1px solid #dbd7d7;
}

.rtl {
    direction: rtl;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow: auto;
    font-family: 'Assistant-Bold';
}


.set-new-lang {
    position: fixed;
    top: 0;
    border-radius: 0 0 5px 0;
    background-color: #52f332;
    color: #000;
    z-index: 6;
    left: 0;
    right: auto;
    padding: 3px;
    cursor: pointer;
}

.back-glass {
    background-color: rgba(255,255,255,0.5);
    backdrop-filter: blur(2px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: none;
    z-index: 10;
}

    .back-glass.show {
        display: block;
    }

        .back-glass.show.on {
            z-index: 100;
            display: flex;
            justify-content: center;
            align-items: center;
        }

            .back-glass.show.on .loader {
                width: 34px;
                height: 44px;
                background-image: url('/Content/images/noun_Washing Machine_empty.png');
                background-position: center;
                position: relative;
            }

                .back-glass.show.on .loader .dram {
                    width: 23px;
                    height: 23px;
                    background-image: url('/Content/images/noun_Washing Machine_dram.png');
                    background-position: center;
                    position: absolute;
                    top: 14px;
                    left: 6px;
                    animation-name: washing-machine-on;
                    animation-duration: 2s;
                    animation-iteration-count: infinite
                }

.top-menu {
    height: 120px;
    width: 100%;
    min-width: 1319px;
    margin: auto;
    position: sticky;
    /* background-image: url(/Content/Images/webp/Union 1.webp); */
    background-color: #19ACFF;
    display: grid;
    grid-auto-flow: column;
    /*grid-template-areas: ". logo benefits coverage qanda price business damage doctor elderly  articles loginBtn .";*/
    grid-template-areas: ". logo benefits coverage qanda price business damage more   .        loginBtn ordetNow .";
    /* grid-template-columns: 60px repeat(9, auto) 240px 60px; */
    justify-content: space-between;
    justify-items: center;
    padding-top: 23px;
    top: 0;
    z-index: 5;
}

    .top-menu div {
        justify-content: center;
        /*height: 100%;*/
        height: 65px;
        width: auto;
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        border-bottom: 3px solid rgba(255, 255, 255, 0.00);
        color: #FFFFFF;
        font-size: 20px;
        direction: ltr;
        justify-content: center;
        align-items: center;
        display: flex;
    }

        .top-menu div.menu-item {
            margin: auto;
            background: linear-gradient(#fff, #fff) bottom / 0% 2px no-repeat;
            transition: 0.15s ease-in;
        }

            .top-menu div.menu-item a {
                color: #fff;
                text-decoration: none;
            }

            .top-menu div.menu-item:target {
                border-bottom: 3px solid #FFFFFF;
                background-color: red;
            }

            .top-menu div.menu-item:hover {
                /*border-bottom: 3px solid #FFFFFF;*/
                /* animation: show_border_1;
                animation-fill-mode: forwards;
                animation-duration: 0.1s*/
                background-size: 100% 2px;
            }

            .top-menu div.menu-item.login-btn:hover {
                border-bottom: 0px solid #FFFFFF;
                background-size: 0% 2px;
            }

        .top-menu div.rl-space {
        }

        .top-menu div.logo {
            background-image: url('/Content/Images/logo2.png');
            width: 185px;
            height: 80px;
            margin: auto;
        }

    .top-menu .logo-div {
        grid-area: logo;
    }

    .top-menu .mobile-menu {
        grid-area: mobileMenu;
        display: none;
    }

    .top-menu .mobile-user-icon {
        display: none;
    }

    .top-menu div.benefits {
        grid-area: benefits;
    }

    .top-menu div.coverage-area {
        grid-area: coverage;
    }

    /*        
    .top-menu div.coverage {
        grid-area: coverage;
    }
    */

    .top-menu div.qanda {
        grid-area: qanda;
    }

    .top-menu div.price-list {
        grid-area: price;
    }

    .top-menu div.business {
        grid-area: business;
    }

    .top-menu div.water-damage {
        grid-area: damage;
    }

    .top-menu div.adopt-a-doctor {
        grid-area: doctor;
    }

    .top-menu div.help-the-elderly {
        grid-area: elderly;
    }

    .top-menu div.articles {
        grid-area: articles;
    }

    .top-menu div.login-btn {
        grid-area: loginBtn;
        width: 240px;
        height: 70px;
        font-size: 20px;
        border-radius: 8px;
        background-color: #FFFFFF;
        display: grid;
        justify-content: center;
        grid-auto-flow: column;
        align-items: center;
        color: #115F8B;
        /*transition: all ease-in-out 0.3s;*/
    }

        .top-menu div.login-btn:hover {
            background-color: #115F8B;
            color: #fff;
            cursor: pointer;
        }

        .top-menu div.login-btn .text {
            width: 147px;
            height: 26px;
            margin: 6px;
            color: #115F8B;
            /*transition: all ease-in-out 0.3s;*/
            border-bottom: 0;
        }

        .top-menu div.login-btn:hover .text {
            color: #fff;
        }

        .top-menu div.login-btn .user-icon {
            background-image: url('../Images/noun_User_1335326.png');
            width: 37px;
            height: 37px;
            margin: 6px;
            transition: all ease-in-out 0.3s;
            border-bottom: 0;
            border-radius: 50%;
        }

        .top-menu div.login-btn:hover .user-icon {
            background-image: url('../Images/noun_User_1335326_1.png');
        }

    .top-menu div.ordet-now-btn-2 {
        grid-area: ordetNow;
        width: 240px;
        height: 70px;
        font-size: 20px;
        border-radius: 8px;
        color: #FFFFFF;
        background-color: var(--unnamed-color-434343);
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 10px;
        /*transition: all ease-in-out 0.3s;*/
    }

        .top-menu div.ordet-now-btn-2:hover {
            background-color: var(--unnamed-color-9bff12);
            color: #115F8B;
            cursor: pointer;
            border-bottom: 0px solid #FFFFFF;
            background-size: 0% 2px;
        }

        .top-menu div.ordet-now-btn-2 .text {
            margin: 0 6px;
            color: var(--unnamed-color-9bff12);
            /*transition: all ease-in-out 0.3s;*/
            border-bottom: 0;
            font-size: 1.4em;
        }

        .top-menu div.ordet-now-btn-2:hover .text {
            color: #115F8B;
        }

        .top-menu div.ordet-now-btn-2 .washing-wachine {
            /*            
                background: url('/Content/Images/noun_Washing Machine_2766267.png');
                width: 37px;
                height: 43px;
                margin-left: 15px;
                margin-right: 15px;
                transition: all ease-out 0.3s;
            */
            background: url('/Content/Images/noun_Washing Machine_2766267.png');
            width: 25px;
            height: 48px;
            margin-left: 15px;
            margin-right: 15px;
            transition: all ease-out 0.3s;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
        }

        .top-menu div.ordet-now-btn-2:hover .washing-wachine {
            background-image: url('../Images/noun_Washing Machine_2766267_1.png');
        }


    .top-menu div.more {
        grid-area: more;
        position: relative;
    }



        .top-menu div.more .addtinals-menu-items {
            position: absolute;
            display: flex;
            flex-direction: column;
            top: 0;
            justify-content: flex-start;
            border: solid 0px #000;
            height: auto;
            max-height: 0px;
            width: max-content;
            margin-top: 60px;
            overflow: hidden;
            transition: max-height 0.150s ease-out;
            padding: 0 10px;
            background-color: var(--unnamed-color-115f8b);
            border-radius: 0 0 10px 10px;
        }

        .top-menu div.more:hover .addtinals-menu-items {
            max-height: 160px;
            border: solid 1px var(--unnamed-color-115f8b);
        }

.side-menu {
    display: flex;
    flex: 0;
    justify-content: space-around;
    flex-direction: column;
    width: 100vw;
    position: fixed;
    top: 30px;
    left: 0;
    height: 0px;
    transition: all ease-in-out 0.3s;
    z-index: 5;
    padding: 10px;
    overflow: hidden;
    /*background-color: #19acff;*/
}

    .side-menu a {
        color: #fff;
        margin: 20px 0;
    }

.ordet-now-btn {
    position: fixed;
    top: 462px;
    left: 0;
    width: 300px;
    height: 80px;
    /*display: flex;*/
    display: none;
    justify-content: center;
    align-items: center;
    transition: all ease-out 0.3s;
    border: solid 2px #19ACFF;
    border-radius: 0 8px 8px 0;
    background-color: #fff;
    z-index: 2;
    font-size: 30px;
    cursor: pointer;
}

    .ordet-now-btn .text {
        color: #19ACFF;
        margin-left: 10px;
        width: 149px;
        height: 40px;
    }

    .ordet-now-btn .noun_arrow {
        background: transparent url('/Content/Images/noun_Arrow_1558216.png') 0% 0% no-repeat padding-box;
        width: 23px;
        height: 20px;
        background-size: cover;
    }

    .ordet-now-btn .washing-wachine {
        background: transparent url('/Content/Images/noun_Washing Machine_2766267.png') 0% 0% no-repeat padding-box;
        width: 37px;
        height: 46px;
        margin-left: 15px;
        margin-right: 15px;
        transition: all ease-out 0.3s;
    }

    .ordet-now-btn:hover {
        width: 306px;
    }

        .ordet-now-btn:hover .washing-wachine {
            background: transparent url('/Content/Images/noun_Washing Machine_2766267_1.png') 0% 0% no-repeat padding-box;
        }



.login-section {
    position: fixed;
    top: calc((100vh - 650px)/2); /*120px;*/
    left: -100vw;
    width: 392px;
    height: 648px;
    background-color: var(--unnamed-color-115f8b);
    Color: #fff;
    box-shadow: 9px 7px 20px #00000029;
    border-radius: 0px 8px 8px 0px;
    z-index: 15;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 30px 48px;
    font-family: 'Assistant-Bold';
    font-size: 20px;
    -moz-transition: left 0.5s ease-in-out;
    -o-transition: left 0.5s ease-in-out;
    -webkit-transition: left 0.5s ease-in-out;
    transition: left 0.5s ease-in-out;
}

    .login-section.show {
        left: 0;
    }

    .login-section .close-login {
        width: 17px;
        height: 17px;
        color: #FFFFFF;
        position: absolute;
        top: 10px;
        right: 10px;
        cursor: pointer;
    }

    .login-section .back-to-login {
        width: 17px;
        height: 17px;
        color: #FFFFFF;
        position: absolute;
        top: 10px;
        left: 10px;
        cursor: pointer;
        display: none;
    }

        .login-section .back-to-login.show {
            display: block;
        }

    .login-section .login-with-div, .login-section .login-fill-data {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        height: 230px;
        width: 100%;
    }



        .login-section .login-with-div .login-with-button {
            background: #FFFFFF;
            /*width: 300px;*/
            width: 100%;
            height: 80px;
            box-shadow: 0px 3px 6px #00000029;
            border-radius: 8px;
            display: flex;
            align-items: center;
            padding: 15px;
            cursor: pointer;
        }

            .login-section .login-with-div .login-with-button :last-child {
                flex: 1;
                height: 61px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .login-section .login-with-div .login-with-button :first-child {
                flex: 4;
                border-left: solid 1px #999;
                height: 61px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .login-section .login-with-div .login-with-button .icon {
                display: flex;
                align-items: center;
                justify-content: center;
                background-position: center;
                background-repeat: no-repeat;
                margin: 0 10px;
                background-size: contain;
            }

            .login-section .login-with-div .login-with-button.login-with-facebook {
                border: 2px solid #1E4FAD;
                color: #1E4FAD;
            }

                .login-section .login-with-div .login-with-button.login-with-facebook .icon-facebook {
                    background-image: url('../Images/Path 298.png');
                    width: 20px;
                    height: 38px;
                }

            .login-section .login-with-div .login-with-button.login-with-google {
                border: 2px solid #C24B3C;
                color: #C24B3C
            }

                .login-section .login-with-div .login-with-button.login-with-google .icon-google {
                    background-image: url('../Images/Path 300.png');
                    width: 38px;
                    height: 38px
                }


    .login-section .restor-password-section,
    .login-section .login-register-user {
        height: 0px;
        width: 100%;
        overflow: hidden;
        transition: height 0.3s ease-in-out;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        font-size: 16px;
        font-family: Assistant-Regular;
    }

        .login-section .restor-password-section.show,
        .login-section .login-register-user.show {
            height: 460px;
        }


        .login-section .restor-password-section img {
            width: 91px;
            height: 87px;
        }

        .login-section .restor-password-section p {
            text-align: center;
        }

    .login-section .login-fill-data {
        height: 400px;
        overflow: hidden;
        transition: height 0.3s ease-in-out;
    }

        .login-section .login-fill-data.hide {
            height: 0px;
        }

        .login-section .login-fill-data .or-log-in,
        .login-section .login-register-user .or-log-in {
            width: 41px;
            height: 41px;
            border-radius: 50%;
            background-color: #FFFFFF;
            color: #115F8B;
            font-size: 16px;
            font-family: 'Assistant-Bold';
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 1;
        }

            .login-section .login-fill-data .or-log-in::before,
            .login-section .login-register-user .or-log-in::before {
                content: "";
                border: none;
                position: absolute;
                border-bottom: solid 1px #fff;
                top: 50%;
                width: 120px;
                left: 48px;
                z-index: 0;
            }

            .login-section .login-fill-data .or-log-in::after,
            .login-section .login-register-user .or-log-in::after {
                content: "";
                border: none;
                position: absolute;
                border-bottom: solid 1px #fff;
                top: 50%;
                width: 120px;
                right: 48px;
                z-index: 0;
            }


        .login-section .login-fill-data .submit-login,
        .login-section .restor-password-section .reset-password,
        .login-section .login-register-user .submit-login {
            background-color: var(--unnamed-color-19acff);
            height: 60px;
            width: 100%;
            box-shadow: 0px 3px 6px #00000029;
            border-radius: 8px;
            color: #fff;
            font-size: 30px;
            font-family: 'Assistant-Bold';
            border: none;
            outline: none;
            cursor: pointer;
        }

        .login-section .login-fill-data .orgat-password {
            font-size: 16px;
        }

        .login-section .login-fill-data .forgat-password {
            font-size: 16px;
            cursor: pointer;
        }

        .login-section .login-fill-data .to-new-reg-div {
            font-size: 20px;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            width: 100%;
        }

            .login-section .login-fill-data .to-new-reg-div .no-account-message {
                color: var(--unnamed-color-9bff12);
            }

            .login-section .login-fill-data .to-new-reg-div .to-reg {
                color: var(--unnamed-color-434343);
                cursor: pointer;
                margin-right: 3px;
                background-color: var(--unnamed-color-9bff12);
                height: 60px;
                width: 100%;
                /*border-radius: 8px;*/
                font-size: 24px;
                font-family: 'Assistant-Bold';
                border: none;
                outline: none;
                cursor: pointer;
                border-radius: 8px;
            }


/************************/
.kvisi-contact-us-section {
    width: 100%;
    min-width: var(--min-width);
    /*margin-top: 20px;*/
    z-index: 2;
    background-color: #F5F5F5;
}

    .kvisi-contact-us-section .content-contact-us {
        background-color: #434343;
        width: 100%;
        min-height: 470px;
        display: grid;
        grid-auto-flow: column;
        grid-template-areas: ". kvisiBlue contactUsDiv expSites .";
        grid-template-columns: 125px 1fr 4fr 1fr 125px;
        justify-content: center;
        align-items: center;
    }

        .kvisi-contact-us-section .content-contact-us div {
            width: 100%;
            min-height: 363px;
            display: flex;
            justify-content: center;
            align-items: center;
            border: none;
        }

            .kvisi-contact-us-section .content-contact-us div.exp-sites {
                border: solid 1px #fff;
                border-bottom: none;
                border-top: none;
                display: flex;
                flex-direction: column;
                justify-content: space-around;
                align-items: center;
            }

                .kvisi-contact-us-section .content-contact-us div.exp-sites img {
                    cursor: pointer;
                }

            .kvisi-contact-us-section .content-contact-us div.kvisi-blue-logo-div {
                border-left: solid 1px #fff;
            }

            .kvisi-contact-us-section .content-contact-us div .contact-us-div {
                width: 100%;
                min-height: 363px;
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
            }

                .kvisi-contact-us-section .content-contact-us div .contact-us-div .right-itm,
                .kvisi-contact-us-section .content-contact-us div .contact-us-div .left-itm {
                    flex-direction: column;
                    justify-content: flex-start;
                    align-items: flex-start;
                    display: flex;
                    color: #fff;
                    padding: 0 90px 0 0;
                }

                    .kvisi-contact-us-section .content-contact-us div .contact-us-div .right-itm textarea {
                        border: solid 1px #fff;
                        height: 80px;
                        resize: vertical;
                        min-height: 80px;
                    }

                    .kvisi-contact-us-section .content-contact-us div .contact-us-div .right-itm button {
                        align-self: flex-end;
                        margin-top: 3px;
                    }

                    .kvisi-contact-us-section .content-contact-us div .contact-us-div .left-itm p {
                        margin: 9px 0;
                        width: 100%;
                        padding: 5px;
                        background: transparent;
                        display: flex;
                        flex-flow: row;
                    }

                        .kvisi-contact-us-section .content-contact-us div .contact-us-div .left-itm p.our-phone:before {
                            content: url('/Content/Images/noun_Phone_2956114.png');
                            vertical-align: central;
                            width: 30px;
                            height: 23px;
                            margin: 0 10px;
                        }

                        .kvisi-contact-us-section .content-contact-us div .contact-us-div .left-itm p.our-email:before {
                            content: url('/Content/Images/noun_Mail_1049796.png');
                            vertical-align: central;
                            width: 30px;
                            height: 23px;
                            margin: 0 10px;
                        }


                    .kvisi-contact-us-section .content-contact-us div .contact-us-div .left-itm .download-links {
                        display: flex;
                        flex-flow: row;
                        flex-wrap: wrap;
                        justify-content: flex-start;
                        align-items: flex-start;
                        min-height: fit-content;
                    }

                        .kvisi-contact-us-section .content-contact-us div .contact-us-div .left-itm .download-links img {
                            /*margin-left: 38px;*/
                            margin: 0 10px;
                            cursor: pointer;
                        }

                .kvisi-contact-us-section .content-contact-us div .contact-us-div a {
                    color: #fff;
                }

/***********************************************************/
#customBtn {
    display: inline-block;
    background: white;
    color: #444;
    width: 190px;
    border-radius: 5px;
    border: thin solid #888;
    box-shadow: 1px 1px 1px grey;
    white-space: nowrap;
}

    #customBtn:hover {
        cursor: pointer;
    }

span.label {
    font-family: serif;
    font-weight: normal;
}

span.icon {
    background: url('/identity/sign-in/g-normal.png') transparent 5px 50% no-repeat;
    display: inline-block;
    vertical-align: middle;
    width: 42px;
    height: 42px;
}

span.buttonText {
    display: inline-block;
    vertical-align: middle;
    padding-left: 42px;
    padding-right: 42px;
    font-size: 14px;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
}

.new-user-input-message {
    opacity: 0.5;
}

/***********************************************************/
@media only screen and (max-width: 1605px) {
    .top-menu {
        min-width: var(--min-width);
        font-size: 20px;
        height: 80px;
        padding-top: 0px;
    }

        .top-menu div.menu-item {
            font-size: 0.8em;
            margin: auto;
            height: 50px
        }

        .top-menu div.ordet-now-btn-2,
        .top-menu div.login-btn {
            height: 50px;
            width: 170px
        }

            .top-menu div.ordet-now-btn-2 .text,
            .top-menu div.login-btn .text
            /*.top-menu div.login-btn .user-icon*/ {
                margin: 0px;
                font-size: 1em;
                /* height: 30px;
                width: 30px;*/
                height: auto;
                width: auto;
            }

            .top-menu div.ordet-now-btn-2 .washing-wachine {
                margin-right: 5px;
            }
}

.top-menu div.login-btn .text {
    width: auto;
}

.top-menu div.logo {
    width: 140px;
    height: 60px;
}

.ordet-now-btn {
    width: 230px;
    height: 60px;
}

    .ordet-now-btn:hover {
        width: 236px;
    }

    .ordet-now-btn .text {
        font-size: 0.7em;
        width: 115px;
        height: 30px;
    }

.copy-and-terms,
.terms-and-usege {
    background-color: #000;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-size: 16px;
    padding: 0 20px;
    font-family: 'Assistant-Bold';
}

    .terms-and-usege div {
        margin: 0 20px;
    }

        .terms-and-usege div a {
            color: #fff;
        }
/***********************************************************/
/******************************************/
.ltr .ordet-now-btn .noun_arrow {
    transform: scaleX(-1);
}

.ltr .ordet-now-btn,
.ltr .set-new-lang {
    right: 0;
    left: auto;
    border-radius: 8px 0 0 8px;
}

.ltr .set-new-lang {
    border-radius: 0 0 0 5px;
}

.ltr .top-menu div.login-btn {
    direction: rtl;
}

.ltr .login-section {
    direction: ltr;
    left: initial;
    right: -100vw;
    transition: right 0.5s ease-in-out;
    border-radius: 8px 0px 0px 8px;
}

    .ltr .login-section.show {
        right: 0;
    }

    .ltr .login-section .login-with-div .login-with-button :first-child {
        border-right: solid 1px #999;
        border-left: none;
    }

.breadcrumbs {
    padding: 10px;
    font-size: 0.9em;
    font-family: sans-serif;
    position: absolute;
    z-index: 2;
    margin: 0 20px;
    display: flex;
    justify-content: flex-end;
    width: 96%;
    /*display:none;*/
}

    .breadcrumbs .breadcrumb__item {
        display: inline-block;
        color: blue;
    }

        .breadcrumbs .breadcrumb__item:not(:last-of-type)::after {
            content: "/";
            margin: 0 3px;
            color: #fff;
        }


        .breadcrumbs .breadcrumb__item:last-of-type {
            pointer-events: none;
            color: #fff;
            font-weight: bold;
            text-decoration: underline;
        }

        .breadcrumbs .breadcrumb__item .breadcrumb__link {
            text-decoration: none;
            color: #fff;
        }

            .breadcrumbs .breadcrumb__item .breadcrumb__link:hover {
                text-decoration: underline;
            }

@media only screen and (max-width: 500px) {
    #wrapLayout {
        min-width: 100vw;
    }

    :root {
        --min-width: 100%;
    }

    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 25px;
    }

    h3 {
        font-size: 14px;
    }

    p {
        font-size: 18px;
    }

    .top-menu {
        grid-template-areas: "mobileMenu logo mobileUserIcon";
        grid-template-columns: 1fr 1fr 1fr;
    }

        .top-menu div.benefits,
        .top-menu div.coverage-area,
        .top-menu div.qanda,
        .top-menu div.price-list,
        .top-menu div.business,
        .top-menu div.water-damage,
        .top-menu div.adopt-a-doctor,
        .top-menu div.help-the-elderly,
        .top-menu div.articles,
        .top-menu div.more,
        .top-menu div.ordet-now-btn-2,
        .top-menu div.login-btn {
            display: none;
        }

        .top-menu .mobile-user-icon {
            grid-area: mobileUserIcon;
            height: 100%;
            display: flex;
            justify-content: center;
            justify-items: self-start;
            justify-self: flex-end;
            padding: 0 10px;
            filter: invert(40%) sepia(57%) saturate(0%) hue-rotate( 197deg ) brightness(200%) contrast(100%);
        }

        .top-menu .mobile-menu {
            grid-area: mobileMenu;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            justify-self: flex-start;
            padding: 0 10px;
        }

            .top-menu .mobile-menu .hamburger {
                width: 9px;
                height: 9px;
                margin: 2px 0;
                border: solid 2px #fff;
                border-radius: 30%;
                position: relative;
            }

            .top-menu .mobile-menu label .hamburger:after {
                content: "";
                background-color: transparent;
                width: 9px;
                height: 0px;
                transition: all ease-in-out 0.5s;
            }

            .top-menu .mobile-menu input[type=checkbox] {
                display: none;
            }

                .top-menu .mobile-menu input[type=checkbox]:checked + label .hamburger:after {
                    content: "";
                    background-color: #fff;
                    width: 9px;
                    height: 9px;
                }


    .side-menu.on {
        flex: 1;
        height: auto;
        width: 100vw;
        position: fixed;
        top: 80px;
        left: 0;
        height: calc(100vh - 80px);
        background-color: #19acff;
    }

    .side-menu .menu-item {
        margin: 0 0;
        animation: slide-out;
        animation-duration: 0.6s;
        animation-fill-mode: forwards;
    }

    .side-menu.on .menu-item {
        margin: 0 1000px;
        animation: slide-in;
        animation-duration: 0.6s;
        animation-fill-mode: forwards;
    }

        .side-menu .menu-item:nth-child(9),
        .side-menu.on .menu-item:nth-child(1) {
            animation-delay: 20ms;
        }

        .side-menu .menu-item:nth-child(8),
        .side-menu.on .menu-item:nth-child(2) {
            animation-delay: 40ms;
        }

        .side-menu .menu-item:nth-child(7),
        .side-menu.on .menu-item:nth-child(3) {
            animation-delay: 60ms;
        }

        .side-menu .menu-item:nth-child(6),
        .side-menu.on .menu-item:nth-child(4) {
            animation-delay: 80ms;
        }

        .side-menu .menu-item:nth-child(5),
        .side-menu.on .menu-item:nth-child(5) {
            animation-delay: 100ms;
        }

        .side-menu .menu-item:nth-child(4),
        .side-menu.on .menu-item:nth-child(6) {
            animation-delay: 120ms;
        }

        .side-menu .menu-item:nth-child(3),
        .side-menu.on .menu-item:nth-child(7) {
            animation-delay: 140ms;
        }

        .side-menu .menu-item:nth-child(2),
        .side-menu.on .menu-item:nth-child(8) {
            animation-delay: 160ms;
        }

        .side-menu .menu-item:nth-child(1),
        .side-menu.on .menu-item:nth-child(9) {
            animation-delay: 180ms;
        }

    .ordet-now-btn {
        position: fixed;
        bottom: 0;
        top: auto;
        width: 100%;
        /*background-color: #19ACFF;*/
        background-color: var(--unnamed-color-9bff12);
        /*color: #fff;*/
        color: var(--unnamed-color-434343);
        border-radius: 0;
        display: flex;
    }

        .ordet-now-btn:hover {
            width: 100%;
        }

        .ordet-now-btn .noun_arrow {
            display: none;
        }

        .ordet-now-btn .text {
            /* color: #fff;*/
            color: var(--unnamed-color-434343);
        }

        .ordet-now-btn .washing-wachine {
            /*filter: invert(40%) sepia(57%) saturate(0%) hue-rotate( 197deg ) brightness(200%) contrast(100%);*/
            filter: invert(40%) sepia(57%) saturate(0%) hue-rotate( 197deg ) brightness(0%) contrast(0%);
        }



    .login-section {
        top: 0px;
        width: 100%;
        border-radius: 0px;
        height: 100vh;
    }

        .login-section .login-fill-data .to-new-reg-div {
            /*font-size: 18px;*/
        }

        .login-section .restor-password-section, .login-section .login-register-user p {
            text-align: center;
        }

        .login-section .login-with-div .login-with-button :first-child {
            /* font-size: 16px;*/
        }

    .row-1 {
        grid-template-columns: 1fr;
    }

    .kvisi-contact-us-section {
    }

        .kvisi-contact-us-section .content-contact-us {
            grid-template-areas: "kvisiBlue" "contactUsDiv" "expSites";
            grid-template-columns: 1fr;
        }

            .kvisi-contact-us-section .content-contact-us div {
                min-height: initial;
                padding: 15px 0;
            }

                .kvisi-contact-us-section .content-contact-us div.kvisi-blue-logo-div {
                    border: none;
                }

                .kvisi-contact-us-section .content-contact-us div .contact-us-div {
                    flex-direction: column;
                }

            .kvisi-contact-us-section .content-contact-us .space-p {
                display: none;
            }

            .kvisi-contact-us-section .content-contact-us div.kvisi-blue-logo-div,
            .kvisi-contact-us-section .content-contact-us div .contact-us-div .right-itm,
            .kvisi-contact-us-section .content-contact-us div .contact-us-div .left-itm {
                padding: 0 0 0 0;
                padding: 20px 10px;
                border-bottom: solid 1px #BBB;
            }

                .kvisi-contact-us-section .content-contact-us div .contact-us-div .left-itm .download-links {
                    justify-content: space-around;
                }

                    .kvisi-contact-us-section .content-contact-us div .contact-us-div .left-itm .download-links img {
                        margin-left: 0;
                        cursor: pointer;
                        margin: 9px 0;
                        width: 160px;
                    }

            .kvisi-contact-us-section .content-contact-us div.exp-sites {
                flex-direction: row;
                border: none;
                padding-bottom: 100px;
            }

    .copy-and-terms {
        flex-direction: column;
        padding: 0px 0px 70px 0;
    }

    .breadcrumbs {
        margin: 0 10px;
        margin-top: -13px;
    }
}
