html {
  width: 100%;
}

body {
  overflow-x: hidden !important;
}

body.show-spinner>main {
  overflow: hidden !important;
}

/* Hide everything under body tag */
body.show-spinner>* {
  opacity: 0;
}

/* Spinner */
body.show-spinner::after {
  content: " ";
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  border-top-color: rgba(0, 0, 0, 0.3);
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
  left: calc(50% - 15px);
  top: calc(50% - 15px);
  position: fixed;
  z-index: 1;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}
/*------------------------New Tab(Menu) 2/5/2023------------------------*/
.new-menu-header {
    /* background-image: linear-gradient(to top, #cff8de 0%, #eefcf3 100%);*/
    padding: 8px 15px 8px 15px;
    display: table;
    margin: 0 auto;
    border-radius: 50px;
    margin-bottom: 20px;
    background-image: linear-gradient(to bottom, #eafbfb 0%, #D7FFFE 100%);
}

    .new-menu-header ul {
        display: block;
        margin: 0px;
        padding: 0px;
    }

        .new-menu-header ul li {
            display: inline-block;
            text-decoration: none;
            margin: 0 15px;
        }

            .new-menu-header ul li a {
                vertical-align: middle;
                color: #3a3a3a;
                font-size: 15px;
            }

                .new-menu-header ul li a:hover {
                    color: #47bac8;
                    font-weight: 500;
                }

                    .new-menu-header ul li a:hover i {
                        background: #47bac8;
                    }

                .new-menu-header ul li a i {
                    background: #575757;
                    width: 40px;
                    height: 40px;
                    display: inline-flex;
                    border-radius: 50px;
                    vertical-align: middle;
                    margin-right: 8px;
                    font-size: 18px;
                    color: #fff;
                    line-height: 40px;
                    display: inline-block;
                    text-align: center;
                    cursor: pointer;
                }

            .new-menu-header ul li.active a {
                color: #47bac8;
                font-weight: bold;
            }

                .new-menu-header ul li.active a i {
                    background: #47bac8;
                }


/*------------------------New Tab(Menu) 2/5/2023------------------------*/

/*--------------------New Tree animation -------*/

.treewrpbox {
    width: 100%;
    display: flex
}

.lefttreewrp {
    width: 47%;
    margin-right: 5%;
    border-top: 1px solid #ccc;
    position: relative;
}

.lefttree-cnt {
    overflow: auto;
    display: flex;
    flex-direction: row;
}

.righttree-cnt {
    overflow: auto;
    display: flex;
    flex-direction: row;
}

.righttreewrp {
    width: 47%;
    border-top: 1px solid #ccc;
    position: relative;
}


.partentreewrp {
    width: 100%;
}

.hv-wrapper .hv-item .hv-item-parent:after {
}

.lefttreewrp .hv-item .hv-item-parent:after {
    position: absolute;
    content: '';
    width: 1px;
    height: 25px;
    top: -50px;
    left: 50%;
    /* background-color: rgba(255, 255, 255, 0.7); */
    background: #D3D3D3;
    transform: translateY(100%);
}

.lefttreewrp .hv-item .hv-item-parent, .righttreewrp .hv-item-parent {
    margin-bottom: 0px !important;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 22px
}

    .righttreewrp .hv-item-parent:after {
        position: absolute;
        content: '';
        width: 1px;
        height: 25px;
        top: -48px;
        left: 50%;
        /* background-color: rgba(255, 255, 255, 0.7); */
        background: #D3D3D3;
        transform: translateY(100%);
    }


.wide-hv-left-arrow {
    top: 1%;
    right: 40%;
    z-index: 5;
    position: absolute;
}

.wide-hv-right-arrow {
    position: absolute;
    top: -1%;
    left: 45%;
    z-index: 5;
}

.g-arrow {
    transform: translate(-50%, -50%);
    transform: rotate(90deg);
    cursor: pointer;
}

    .g-arrow span {
        display: block;
        width: 12px;
        height: 12px;
        border-bottom: 3px solid green;
        border-right: 3px solid green;
        transform: rotate(45deg);
        margin: -10px;
        animation: animate 2s infinite;
    }

        .g-arrow span:nth-child(2) {
            animation-delay: -0.2s;
        }

        .g-arrow span:nth-child(3) {
            animation-delay: -0.4s;
        }


 

    .r-arrow span {
        display: block;
        width: 12px;
        height: 12px;
        border-bottom: 3px solid red;
        border-right: 3px solid red;
        transform: rotate(45deg);
        margin-bottom: -11px;
        animation: animate1 2s infinite;
    }

        .r-arrow span:nth-child(2) {
            animation-delay: -0.2s;
        }

        .r-arrow span:nth-child(3) {
            animation-delay: -0.4s;
        }

.rl-arrow {
    transform: translate(-50%, -50%);
    transform: rotate(90deg);
    cursor: pointer;
}

    .rl-arrow span {
        display: block;
        width: 12px;
        height: 12px;
        border-bottom: 3px solid red;
        border-right: 3px solid red;
        transform: rotate(45deg);
        margin-bottom: -11px;
        animation: animate 2s infinite;
    }

        .rl-arrow span:nth-child(2) {
            animation-delay: -0.2s;
        }

        .rl-arrow span:nth-child(3) {
            animation-delay: -0.4s;
        }

.gr-arrow {
    transform: translate(-50%, -50%);
    transform: rotate(-90deg);
    cursor: pointer;
}

.gr-arrow {
    transform: translate(-50%, -50%);
    transform: rotate(-90deg);
    cursor: pointer;
}

    .gr-arrow span {
        display: block;
        width: 12px;
        height: 12px;
        border-bottom: 3px solid green;
        border-right: 3px solid green;
        transform: rotate(45deg);
        margin-bottom: -10px;
        animation: animate1 2s infinite;
    }

        .gr-arrow span:nth-child(2) {
            animation-delay: -0.2s;
        }

        .gr-arrow span:nth-child(3) {
            animation-delay: -0.4s;
        }

@keyframes animate {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-20px, -20px);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: rotate(45deg) translate(20px, 20px);
    }
}

@keyframes animate1 {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-20px, -20px);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: rotate(45deg) translate(20px, 20px);
    }
}

.wide-hv-top-arrow-g {
    position: absolute;
    width: 8%;
    left: 32%;
    z-index: 4
}

.wide-hv-top-arrow-r {
    position: absolute;
    top: 6px;
    right: 32%;
    z-index: 4
}


/*---------button animation---*/
.anim-btn {
    padding: 5px 10px;
    -webkit-animation: NAME-YOUR-ANIMATION 1s infinite; /* Safari 4+ */
    -moz-animation: NAME-YOUR-ANIMATION 1s infinite; /* Fx 5+ */
    -o-animation: NAME-YOUR-ANIMATION 1s infinite; /* Opera 12+ */
    animation: NAME-YOUR-ANIMATION 1s infinite; /* IE 10+, Fx 29+ */
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    border-radius: 5px;
}



@-webkit-keyframes NAME-YOUR-ANIMATION {
    0%, 49% {
        background-color: #1fa061;
    }

    50%, 100% {
        background-color: #7ad4a8;
    }
}

/*------tree view indications ------*/
.tree-indication {
    position: relative;
    margin: 0 auto;
}

.tree-direction-wrp {
    background: #def1fe;
    padding: 5px 15px;
    border: 1px dashed #b4defa;
    display: inline-block;
    position: absolute;
    right: 0;
    width: 161px;
    background-image: linear-gradient(to top, #ffffff 0%, #ace0f9 100%);
}

    .tree-direction-wrp ul {
        display: block;
        padding: 0px;
        margin: 0px;
    }

        .tree-direction-wrp ul li {
            text-decoration: none;
            display: inline-block;
            width: 100%;
        }

    .tree-direction-wrp p {
        margin-bottom: 8px;
        border-bottom: 1px dashed #017bd0;
        text-align: center;
        font-size: 14px;
    }

@media only screen and (max-width:480px) {
    .tree-direction-wrp {
        width: 100% !important;
    }
}

@media only screen and (max-width: 988px) {
    .tree-direction-wrp {
        position: relative;
        width: 70%;
        margin: 0px auto 10px auto;
        display: inherit;
    }

        .tree-direction-wrp ul {
            display: flex
        }
}
/*------End tree view indications ------*/
 
/*--------New Login Form-----*/
.new-login-wrp {
    position: absolute;
    border: initial;
    border-radius: .1rem;
    box-shadow: 0 1px 15px rgba(0,0,0,.04), 0 1px 6px rgba(0,0,0,.04);
    padding: 22px 28px !important;
    padding: 22px 28px !important;
    right: 0px;
    width: 28%;
    color: #fff;
    z-index: 500;
    background-color: rgb(0, 108, 247,0.5);
    backdrop-filter: blur(10px);
}

.new-login-wrp a {
    color: #fff;
}

.new-login-wrp input {
    border-radius: 50px;
    margin-top: 5px;
}

.new-heading {
    background: #0075d6;
    padding: 10px;
    border-radius: 70px;
    background-image: linear-gradient(-225deg, #22E1FF 0%, #1D8FE1 48%, #625EB1 100%);
    margin-bottom: 20px;
}

.bg {
    animation: slide 3s ease-in-out infinite alternate;
    background-image: linear-gradient(-60deg, #6c3 50%, #09f 50%);
    bottom: 0;
    left: -50%;
    opacity: .1;
    position: fixed;
    right: -50%;
    top: 0;
    z-index: 5;
}

.bg2 {
    animation-direction: alternate-reverse;
    animation-duration: 4s;
}

.bg3 {
    animation-duration: 5s;
}




@keyframes slide {
    0% {
        transform: translateX(-25%);
    }

    100% {
        transform: translateX(25%);
    }
}

/*--------product catalog -----*/
.prodict-catalog-box, .prodict-box, .video-box {
    text-align: center;
    padding: 10px;
    border-radius: 5px;
}

    .prodict-catalog-box h4, .prodict-box h4, .video-box h4 {
        font-size: 16px;
        font-weight: 600
    }

    .prodict-catalog-box img, .prodict-box img, .video-box img {
        margin-bottom: 15px;
        margin-top: 7px;
    }

.prodict-catalog-box a {
    color: #000;
}

    .prodict-catalog-box a:hover {
        opacity: 0.6
    }

.bgcatalog1 {
    background: #e1f6fc;
    border: 2px solid #fff;
}

.bgcatalog2 {
    background: #e7fcec;
    border: 2px solid #fff;
}

.bgcatalog3 {
    background: #fbf2eb;
    border: 2px solid #fff;
}

.bgcatalog4 {
    background: #f6eeff;
    border: 2px solid #fff;
}

.prodict-box {
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    background: #F4F4F4;
    margin-bottom:30px;
}

.video-box {
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    background: #F4F4F4;
    margin-bottom: 30px;
}
    .video-box img {
        margin-bottom: 15px;
        margin-top: 7px;
        border-radius: 8px 8px 0px 0px;
    }

.member-login-box {
    background: #e1f6fc;
    border: 2px solid #fff;
    padding: 50px 20px;
}

    .member-login-box ul {
        display: block;
        margin: 0px;
        padding: 0px;
    }

        .member-login-box ul li {
            text-decoration: none;
            display: block;
            margin-bottom: 20px
        }

            .member-login-box ul li:last-child {
                margin-bottom: 0px;
            }

            .member-login-box ul li a {
                background: #0053b3;
                padding: 15px 10px;
                color: #fff;
                display: inline-block;
                width: 100%;
                font-size: 16px;
                text-align: center;
                border-radius: 5px;
            }

                .member-login-box ul li a:hover {
                    background: #08a2e0;
                }



.login-modal {
    background: ##ace0f9 !important;
    background-image: linear-gradient(to top, #fff1eb 0%, #ace0f9 100%) !important;
}

    .login-modal h4 {
        color: #085dad;
        font-size: 20px;
        font-weight: bold;
        text-align: center
    }

    .login-modal .modal-body {
        width: 88%;
        margin: 0 auto;
    }

.log-btnred {
    background: #f04646;
    color: #fff;
}

.video-box {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    background-image: linear-gradient(to top, #5ee7df 0%, #b490ca 100%);
    color: #8c1ad2;
    font-size: 18px;
}

.bg-linkclr {
    background-image: linear-gradient(15deg, #13547a 0%, #80d0c7 100%);
    color: #fff;
    padding: 5px 8px !important;
}
    .bg-linkclr:hover {
        background-image: linear-gradient(15deg, #80d0c7 0%, #13547a 100%);
    }


.head-logo{width:87px;}