/**==================== [1] Loading  ======================**/

#loading {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 999999;
    background: rgba(40, 51, 69, 1);
}

.load-circle:after,
.load-circle:before {
    content: '';
    height: 50%;
    width: 100%;
    position: absolute;
    left: 0;
    transition: all 1s;
}

.load-circle:after {
    top: 0;
}

.load-circle:before {
    bottom: 0;
}

.load-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #87B756;
    border-top: 2px solid #FFF;
    -webkit-animation: rotate 1.2s infinite linear;
    animation: rotate 1.2s infinite linear;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

@-webkit-keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/**==================== [1] Font  ======================**/

@font-face {
    font-family: 'Open Sans Hebrew';
    src: url(../fonts/opensanshebrew-light-webfont.eot);
    src: url(../fonts/opensanshebrew-light-webfont.eot?#iefix) format('embedded-opentype'), url(../fonts/opensanshebrew-light-webfont.woff) format('woff'), url(../fonts/opensanshebrew-light-webfont.ttf) format('truetype'), url(../fonts/opensanshebrew-light-webfont.svg#open_sans_hebrewlight) format('svg');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans Hebrew';
    src: url(../fonts/opensanshebrew-regular-webfont.eot);
    src: url(../fonts/opensanshebrew-regular-webfont.eot?#iefix) format('embedded-opentype'), url(../fonts/opensanshebrew-regular-webfont.woff) format('woff'), url(../fonts/opensanshebrew-regular-webfont.ttf) format('truetype'), url(../fonts/opensanshebrew-regular-webfont.svg#open_sans_hebrewregular) format('svg');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans Hebrew';
    src: url(../fonts/opensanshebrew-bold-webfont.eot);
    src: url(../fonts/opensanshebrew-bold-webfont.eot?#iefix) format('embedded-opentype'), url(../fonts/opensanshebrew-bold-webfont.woff) format('woff'), url(../fonts/opensanshebrew-bold-webfont.ttf) format('truetype'), url(../fonts/opensanshebrew-bold-webfont.svg#open_sans_hebrewbold) format('svg');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans Hebrew';
    src: url(../fonts/opensanshebrew-extrabold-webfont.eot);
    src: url(../fonts/opensanshebrew-extrabold-webfont.eot?#iefix) format('embedded-opentype'), url(../fonts/opensanshebrew-extrabold-webfont.woff) format('woff'), url(../fonts/opensanshebrew-bold-webfont.ttf) format('truetype'), url(../fonts/opensanshebrew-extrabold-webfont.svg#open_sans_hebrewbold) format('svg');
    font-weight: 800;
    font-style: normal;
}


/**==================== [2] Preset  ======================**/

body {
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
    -webkit-font-smoothing: subpixel-antialiased;
    font-family: 'Open Sans Hebrew';
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    /*color: #FFF;*/
    /*background: rgba(40,51,69,1);*/
    background: rgb(248, 248, 248) !important;
    background: -ms-linear-gradient(90deg, rgba(40, 51, 69, 0.88) 0.14%, rgba(46, 55, 72, 0.88) 99.65%);
    background: -webkit-linear-gradient(90deg, rgba(40, 51, 69, 0.88) 0.14%, rgba(46, 55, 72, 0.88) 99.65%);
    background: -moz-linear-gradient(90deg, rgba(40, 51, 69, 0.88) 0.14%, rgba(46, 55, 72, 0.88) 99.65%);
    background: -o-linear-gradient(90deg, rgba(40, 51, 69, 0.88) 0.14%, rgba(46, 55, 72, 0.88) 99.65%);
    background: linear-gradient(90deg, rgba(40, 51, 69, 0.88) 0.14%, rgba(46, 55, 72, 0.88) 99.65%);
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #87B756;
    font-weight: 500;
}

h1,
.h1 {
    color: #87B756;
    font-size: 42px;
    letter-spacing: 4px;
    margin-bottom: 45px;
}

h1 span {
    display: block;
    font-size: 18px;
    color: #FFF;
    letter-spacing: 0.7px;
}

.h2,
h2 {
    font-size: 40px;
    margin-bottom: 30px;
}

.h3,
h3 {
    font-size: 22px;
    margin-bottom: 35px;
    letter-spacing: 1.5px;
}

.h6,
h6 {
    font-size: 16px;
    font-weight: 600
}

a {
    text-decoration: none;
    /*color: #ffffff;*/
    color: #186096 !importnat;
    transition: all 0.3s ease 0s;
}

a:hover {
    /*color: #87B756;*/
    color: #000000;
    text-decoration: none;
}

figure {
    margin: 0
}

b,
strong {
    font-weight: 800
}

hr {
    border-color: #FFF;
    margin-bottom: 20px;
    margin-top: 20px;
}

img {
    max-width: 100%;
}

p {
    margin-bottom: 32px;
}

::-moz-selection {
    color: #fff;
    background: #87B756;
}

::selection {
    color: #fff;
    background: #87B756;
}

.section {
    padding-top: 53px;
    padding-bottom: 50px;
}

.transition {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.full-screen {
    min-height: 100vh;
}

.text-red {
    color: #fd0c06;
}


/**==================== [3] Buttons  ======================**/

button:focus {
    outline: none;
    box-shadow: none;
}

.btn {
    /* background: #87B756; */
    background: #87B756;
    color: #FFF;
    font-size: 18px;
    border-radius: 35px;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    -ms-border-radius: 35px;
    -o-border-radius: 35px;
    width: 100%;
    max-width: 300px;
    padding: 15px 20px 17px;
    font-weight: bold;
    transition: all 0.75 ease-in-out;
    -webkit-transition: all 0.75 ease-in-out;
    -moz-transition: all 0.75 ease-in-out;
    -ms-transition: all 0.75 ease-in-out;
    -o-transition: all 0.75 ease-in-out;
}

.btn:hover {
    opacity: 0.8;
    color: #FFF;
}

.btn-white {
    background: #FFF;
    /* color: #87B756; */
    color: #87B756;
}

.btn-white:hover {
    /* color: #87B756; */
    color: #87B756;
}

.btn-lg {
    font-size: 24px;
    padding: 10px 20px 13px;
    font-weight: 700;
    letter-spacing: 4px;
}

.btn.btn-link {
    width: auto;
    background: transparent;
    padding: 0;
    height: 46px;
    line-height: 46px;
    font-weight: 400;
    letter-spacing: 1px;
}

.btn-gray {
    background: #464e5d;
}

.btn-small {
    max-width: 250px;
}

button {
    cursor: pointer;
}


/**==================== [4] Header  ======================**/

.header {
    direction: ltr;
    padding-bottom: 36px;
}

.header .navbar {
    padding-left: 0;
    padding-right: 0;
}

.navbar .navbar-nav {
    display: rtl;
    font-size: 16px;
}

.navbar-brand {
    background: url(../images/logo.png) no-repeat 0 0;
    width: 345px;
    height: 98px;
    display: block;
    margin: 0;
    background-size: 100%;
    font-size: 0;
    overflow: hidden;
    text-indent: -888px;
}

.navbar-toggler {
    color: #fff;
    z-index: 1;
    position: relative;
    width: 47px;
    height: 35px;
    margin-left: 55px;
}

.navbar-toggler i {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 3px;
    /*    background: #87B756; */
    color: #87B756;
    opacity: 1;
    border-radius: 3px;
    transition: background-color .35s, opacity 175ms cubic-bezier(.215, .61, .355, 1), -webkit-transform 175ms cubic-bezier(.215, .61, .355, 1);
    transition: background-color .35s, transform 175ms cubic-bezier(.215, .61, .355, 1), opacity 175ms cubic-bezier(.215, .61, .355, 1);
    transition: background-color .35s, transform 175ms cubic-bezier(.215, .61, .355, 1), opacity 175ms cubic-bezier(.215, .61, .355, 1), -webkit-transform 175ms cubic-bezier(.215, .61, .355, 1);
    -webkit-transform: translateY(0) translateZ(0);
    transform: translateY(0) translateZ(0);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.navbar-toggler i:nth-child(1) {
    top: 0;
}

.navbar-toggler i:nth-child(2) {
    top: 14px;
}

.navbar-toggler i:nth-child(3) {
    top: 28px;
}

.navbar-toggler:focus {
    outline: 0;
    box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] i:nth-child(1) {
    -webkit-transform: translateY(14px) rotate(45deg);
    transform: translateY(14px) rotate(45deg);
    -moz-transform: translateY(14px) rotate(45deg);
    -ms-transform: translateY(14px) rotate(45deg);
    -o-transform: translateY(14px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] i:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] i:nth-child(3) {
    -webkit-transform: translateY(-14px) rotate(-45deg);
    transform: translateY(-14px) rotate(-45deg);
    -moz-transform: translateY(-14px) rotate(-45deg);
    -ms-transform: translateY(-14px) rotate(-45deg);
    -o-transform: translateY(-14px) rotate(-45deg);
}

.navbar-expand-lg .navbar-toggler {
    display: block;
}

.navbar .navbar-nav .svgicon {
    /*  fill: #87B756;
    stroke: #87B756; */
    fill: #87B756;
    stroke: #87B756;
    stroke-width: 0.5px;
    fill-rule: evenodd;
}

.navbar .navbar-nav li {
    padding: 0 8px;
}

.navbar .navbar-nav a {
    text-align: center;
}

.navbar .navbar-nav a i {
    display: flex;
    margin: 0 auto;
    height: 62px;
    width: 62px;
    padding-top: 6px;
    margin-bottom: 4px;
    text-align: center;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.navbar .navbar-nav a:hover,
.navbar .navbar-nav .active a {
    /*color: #FFF;*/
    color: #000000;
}

.navbar .navbar-nav a:hover i,
.navbar .navbar-nav .active a i {
    /* background: #87B756; */
    background: #87B756;
}

.navbar .navbar-nav a:hover .svgicon,
.navbar .navbar-nav .active a .svgicon {
    fill: #FFF;
    stroke: #FFF;
}


/**==================== [4] icon  ======================**/

.icon-plus {
    display: inline-block;
    vertical-align: middle;
    width: 68px;
    height: 68px;
    line-height: 72px;
    color: #FFF;
    border-radius: 50%;
    background-color: #ffc80a;
    font-weight: 400;
    font-style: normal;
    font-size: 48px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin: -30px 0 -30px 6px;
}

.icon-arrow {
    background: url(../images/icon/Arrow.svg) no-repeat 0 0;
    width: 18px;
    height: 14px;
    display: inline-block;
    vertical-align: middle;
}

.icon-arrow.icon-arrow-right {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.btn .icon-arrow {
    margin-right: 25px;
}

.btn .icon-arrow-right {
    margin-right: 0;
    margin-left: 25px;
}

.icon-help {
    background: #FFF;
    color: #ffc80a;
    font-style: normal;
    border-radius: 50%;
    width: 29px;
    height: 29px;
    line-height: 29px;
    font-weight: 800;
    font-size: 16px;
    display: inline-block;
    vertical-align: middle;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 0;
}

.icon-help-yellow {
    background: #ffc80a;
    color: #FFF;
    text-align: center;
}

.icon-calendar {
    background: url(../images/icon/icon-calendar.png) no-repeat 0 0;
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
}

.icon-link {
    background: url(../images/icon/icon-link.png) no-repeat 0 0;
    width: 12px;
    height: 19px;
    display: inline-block;
    vertical-align: middle;
    margin: 0 2px;
}

.icon-search {
    background: url(../images/icon/icon-search.png) no-repeat 0 0;
    width: 21px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
}

.icon-plus-small {
    background: url(../images/icon/icon-plus.png) no-repeat 0 0;
    width: 19px;
    height: 19px;
    display: inline-block;
    vertical-align: middle;
}

.icon-copy {
    background: url(../images/icon/icon-copy.png) no-repeat 0 0;
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
}

.btnedit {
    border: solid 1px #FFF;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    width: 33px;
    height: 33px;
    background: url(../images/icon/icon-edit.png) no-repeat center center;
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
}


/**==================== [5] Login  ======================**/

.loginpage {
    min-height: 100vh;
    display: flex;
    background: url(../images/login-banner.jpg) no-repeat center center;
    background-size: cover;
    padding: 48px 20px;
}

.loginContainer {
    width: 100%;
    max-width: 889px;
    margin: 0 auto;
    text-align: center;
}

.containerTop {
    border-radius: 14px 14px 0 0;
    -webkit-border-radius: 14px 14px 0 0;
    -moz-border-radius: 14px 14px 0 0;
    -ms-border-radius: 14px 14px 0 0;
    -o-border-radius: 14px 14px 0 0;
    padding: 36px 0 53px;
    /*background:rgba(46,55,72,0.9);*/
    background: white;
    box-shadow: 5px 5px 49px rgba(6, 4, 22, 0.23);
}

.containerFooter {
    /*   background: #87B756; */
    background: #87B756;
    padding: 83px 0 61px;
    border-radius: 0 0 14px 14px;
    -webkit-border-radius: 0 0 14px 14px;
    -moz-border-radius: 0 0 14px 14px;
    -ms-border-radius: 0 0 14px 14px;
    -o-border-radius: 0 0 14px 14px;
    box-shadow: 5px 5px 49px rgba(6, 4, 22, 0.23);
}

.containermiddle {
    /*background:rgba(46,55,72,0.9);*/
    background: white;
    box-shadow: 5px 5px 38px rgba(6, 4, 22, 0.30);
    margin: 8px 0;
    z-index: 1;
    position: relative;
    padding: 62px 35px 43px;
}

.loginContainer .form {
    max-width: 303px;
    margin: 0 auto
}

.loginContainer .form-control {
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-color: #85c042;
    padding: 10px 29px;
}

.logo {
    background: url(../images/logo.png) no-repeat center center;
    width: 345px;
    height: 130px;
    display: block;
    margin: 0 auto;
    background-size: 100%;
}

.loginContainer h1 {
    /*color: #FFF;*/
    margin: 0 -10px 79px;
}

.loginContainer .form-group {
    margin-bottom: 35px;
}

.loginContainer .form-link {
    padding-right: 26px;
    margin-top: -16px;
    margin-bottom: 62px;
    font-size: 16px;
}


/*Middle*/

.subcontainer {
    /*background: #2e3748;*/
    background: white;
    padding: 40px 5.22vw 90px;
    box-shadow: 0px .0px 13px rgba(6, 4, 22, 0.30);
}

.middlesection {
    padding: 26px 0 0;
    text-align: right;
}


/*Form Element*/

.form-control {
    border-color: #dedede;
    color: #3c3c3c;
    font-size: 18px;
    height: 46px;
    padding-left: 16px;
    padding-right: 16px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.form-control:focus {
    /*  border-color: #87B756; */
    border-color: #87B756;
    box-shadow: 0 0 0 0.1rem rgba(79, 206, 93, 0.1);
}

.form-control::placeholder {
    color: #3c3c3c;
    opacity: 1;
}

.form-control:-ms-input-placeholder {
    color: #3c3c3c;
}

.form-control::-ms-input-placeholder {
    color: #3c3c3c;
}

textarea.form-control {
    height: 180px;
}

.form-select {
    border-color: #dedede !important;
    color: #3c3c3c;
    font-size: 18px;
    border: solid 1px #dedede;
    background: #FFF;
    height: 46px;
    line-height: 46px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    width: 100%;
    max-width: 100%;
    padding: 0 20px 0 10px;
    font-weight: 400;
}

.form-select:hover {
    opacity: 1;
    color: #3c3c3c;
}

.bootstrap-select>.form-select::after {
    margin-left: 0;
    margin-right: auto;
    background: url(../images/arrow-select.png) no-repeat 0 0;
    width: 17px;
    height: 9px;
    border: 0;
    transition: all 0.2s ease-out;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
}

.bootstrap-select.form-control.show>.form-select::after {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.bootstrap-select>.form-select .filter-option {
    margin-left: -100%;
    margin-right: 0;
    text-align: right;
    padding: 0 5px 0 15px;
}

.bootstrap-select .dropdown-menu.inner {
    padding: 0 10px;
}

.bootstrap-select .dropdown-item.active,
.bootstrap-select .dropdown-item:active {
    /*background: #87B756;*/
    background: #87B756;
}

.custom-control.custom-checkbox-lg {
    font-size: 24px;
    margin-bottom: 22px;
}

.custom-control {
    padding-left: 0;
    padding-right: 0;
}

.custom-control-label {
    padding-right: 47px;
}

.custom-control-label::before {
    width: 26px;
    height: 26px;
    left: auto;
    right: 0;
    top: 0px;
    border-color: #898989 !important;
}

.custom-control-input:focus~.custom-control-label::before {
    outline: none;
    box-shadow: none;
}

.custom-control-input:checked~.custom-control-label::before {
    background: #FFF;
    border-color: #898989;
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::after {
    background: url(../images/icon/Confirm.svg) no-repeat 0 0;
}

.custom-control-label::after {
    left: auto;
    right: 5px;
    top: 6px;
}

.custom-radio .custom-control-label::before {
    background: transparent !important;
    border: solid 2px #878787 !important;
    width: 18px;
    height: 18px;
    top: 3px;
}

.custom-radio .custom-control-label::after {
    top: 7px;
    right: 4px;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.custom-radio .custom-control-label {
    padding-right: 26px;
}

.custom-radio .custom-control-input:checked~.custom-control-label::after {
    background: #85c042;
}

.custom-radio .custom-control-input:checked~.custom-control-label::before {
    background: transparent;
}

.custom-control-input.is-valid~.custom-control-label,
.was-validated .custom-control-input:valid~.custom-control-label {
    /*color: #FFF;*/
}

.input-group {
    direction: ltr;
}

.input-group .form-control {
    direction: rtl;
    border-left: 0;
}

.input-group .form-control.lastright {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.input-group .btn {
    background: #ffc80a;
    border-color: #dddddd;
    padding: 0 10px;
    border-radius: 5px 0 5px 5px;
}

.input-group .btn:hover {
    opacity: 1;
    /*background: #87B756 */
    background: #87B756
}

.input-group .btn:hover i {
    color: #87B756;
}

.input-group .input-group-text {
    background: #FFF;
    border-color: #dddddd;
}

.input-group .form-select,
.input-group .form-select:hover {
    background: #FFF;
    border-color: #dcdcdc !important
}

.form-control.is-invalid,
.was-validated .form-control:invalid,
.form-control.is-valid,
.was-validated .form-control:valid,
.was-validated textarea.form-control:valid,
textarea.form-control.is-valid,
.was-validated textarea.form-control:invalid,
textarea.form-control.is-invalid {
    background-image: none;
    padding-right: 16px;
    border-color: #dedede;
}

.form-group .invalid-feedback {
    font-size: 14px;
    margin-bottom: -25px;
    padding-right: 20px;
}

.formsection {
    padding: 35px 0 5px;
}

.formsectionbox {
    background: #f6f6f6;
    color: #2e3748;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    padding: 40px 40px 0px;
    margin-top: 24px;
}

.formsectionbox h3 {
    color: #2e3748;
}

.formsectionbox .form-control,
.formsectionbox .form-select {
    border-color: #2e3748 !important;
    color: #2e3748;
}

.rowoption {
    padding: 34px 0;
    text-align: left;
}

.rowoption .btn {
    padding: 0 14px;
    height: 36px;
    line-height: 36px;
    font-size: 16px;
    font-weight: 400;
    width: auto;
    min-width: none;
    max-width: none;
    margin-right: 25px;
}

.rowoption .btn i {
    margin-left: 5px;
}

.form-row {
    margin-left: -34px;
    margin-right: -34px;
}

.form-row [class*="col-"] {
    padding-left: 34px;
    padding-right: 34px;
}

.field-required {
    position: relative;
}

.field-required::after {
    content: '*';
    position: absolute;
    top: 10px;
    margin-right: 8px;
    color: red;
    z-index: 4;
}

.field-required-file::after {
    content: '*';
    position: absolute;
    top: 10px;
    margin-right: 8px;
    color: red;
    z-index: 4;
    right: 0;
}

.form-group {
    margin-bottom: 38px;
}

.form-btn-row {
    padding: 22px 0 35px;
    text-align: left;
}

.labeltitle {
    font-size: 16px;
    letter-spacing: 1.5px;
}

.labelheading {
    display: block;
    margin-bottom: 12px;
    letter-spacing: 1.8px;
}

.labelheading .icon-help {
    margin-right: 5px;
}

.stepNavigation {
    margin: 0 -5.22vw 10px;
    /*background: #424958;*/
    padding: 12px 0;
    display: flex;
    line-height: 1.15;
}

.stepNavigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    width: 100%;
    -ms-flex-align: center;
    justify-content: center;
}

.stepNavigation ul li {
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    max-width: 350px;
    padding: 0 20px;
    text-align: right;
    -ms-flex-align: center;
    justify-content: center;
}

.stepNavigation ul li span {
    padding-top: 10px;
}

.stepNavigation ul li span.stepn {
    width: 100px;
    height: 100px;
    background: #2e3748;
    font-size: 62px;
    font-weight: 400;
    line-height: 100px;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    text-align: center;
    margin: 0 0 0 13px;
    padding: 0;
}

.stepNavigation ul li.active {
    color: #87B756;
}

.stepNavigation ul li.active span.stepn {
    background: #87B756;
    color: #FFF;
}

.formtabsFilters {
    padding: 34px 0 0px;
    text-align: right;
    list-style: none;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.formtabsFilters li {
    flex-shrink: 0;
    margin: 0 0 7px 24px;
}

.formtabsFilters select.smallselect {
    background: transparent;
    padding: 0 20px;
    margin: 0 10px 0 2px;
    color: #FFF;
    border: 0;
    border-bottom: solid 1px #FFF;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    min-width: 70px;
    font-size: 14px;
    margin-bottom: 2px;
}

.formtabsFilters select.smallselect:focus {
    outline: none;
    box-shadow: none;
}

.button-filter {
    display: inline-block;
    background: #585f6d;
    padding: 1px 10px;
    margin: 0;
    color: #FFF;
    border-width: 0;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    cursor: pointer;
}

.button-filter.nobg {
    background: transparent
}

.button-filter:hover,
.button-filter.nobg:hover {
    background: #87B756;
}

.formtabsFilters .form-select {
    padding: 0;
    background: none;
    border: 0;
    height: auto;
    line-height: 26px;
    color: #FFF;
}

.formtabsFilters .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
    width: auto;
}

.formtabsFilters .bootstrap-select>.form-select .filter-option {
    padding: 0 24px 0 0;
    color: #FFF;
}

.formtabsFilters .bootstrap-select>.form-select::after {
    margin-left: auto;
    margin-right: 0;
    background: url(../images/icon/icon-arrow-2.png) no-repeat 0 0;
}

.formtabsFilters li li {
    padding: 0;
    margin: 0;
    text-align: right;
}

.tabspagination {
    border-top: solid 1px #b7b7b7;
    border-bottom: solid 1px #b7b7b7;
    padding: 11px 0;
    font-size: 16px;
    letter-spacing: 1.2px;
    list-style: none;
    margin: 0 0 20px 0;
    display: flex;
    flex-wrap: wrap;
}

.tabspagination li {
    flex-shrink: 0;
    margin: 0 4px;
    padding: 4px 0;
}

.tabspagination a {
    display: inline-block;
    vertical-align: middle;
    min-width: 28px;
    min-height: 28px;
    line-height: 28px;
    background: #464e5d;
    text-align: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    font-size: 14px;
    letter-spacing: 0;
}

.nav-link {
    color: #007bff !important;
}

.tabspagination a:hover,
.tabspagination .active a {
    background: #87B756;
    color: #FFF;
}


/**================== Footer ==============**/

#footer {
    text-align: center;
    font-size: 11px;
    padding: 20px 0;
    letter-spacing: 0.8px;
}


/**==================== [8] Responsive  ======================**/

@media (min-width: 1400px) {
    .container {
        max-width: 1520px;
    }
}

@media (max-width: 1399.98px) {
    .loginContainer h1 {
        margin-bottom: 40px;
    }
    .loginContainer .form-link {
        margin-bottom: 40px;
    }
    .containerFooter {
        padding: 50px 0;
    }
    .form-row {
        margin-left: -20px;
        margin-right: -20px;
    }
    .form-row [class*="col-"] {
        padding-left: 20px;
        padding-right: 20px;
    }
    .navbar-toggler {
        margin-left: 30px
    }
    .navbar .navbar-nav li {
        padding: 0;
    }
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-left: 4px;
        padding-right: 4px;
    }
    .navbar-brand {
        width: 255px;
        height: 75px;
    }
}

@media (max-width: 1199.98px) {}

@media (max-width: 991.98px) {
    .loginContainer h1 {
        margin-bottom: 26px;
    }
    .loginContainer .form-link {
        margin-bottom: 40px;
    }
    .containerTop,
    .containermiddle {
        padding: 20px 15px;
    }
    .containerFooter {
        padding: 30px 15px;
    }
    .logo {
        width: 100%;
        max-width: 300px;
    }
    h1 {
        font-size: 38px;
    }
    .loginContainer .form-group {
        margin-bottom: 20px;
    }
    .btn {
        padding: 10px 20px;
    }
    .form-select {
        padding: 0 20px 0 10px;
    }
    .form-control {
        height: 44px;
    }
    .stepNavigation ul li span.stepn {
        width: 50px;
        height: 50px;
        font-size: 30px;
        font-weight: 700;
        line-height: 50px;
        flex-shrink: 0;
    }
    .form-btn-row {
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .form-row {
        margin-left: -15px;
        margin-right: -15px;
    }
    .form-row [class*="col-"] {
        padding-left: 15px;
        padding-right: 15px;
    }
    .navbar-brand {
        width: 230px;
        height: 66px;
    }
    .navbar-toggler {
        position: absolute;
        top: 20px;
        right: 0px;
        transform: scale(0.8);
        -webkit-transform: scale(0.8);
        -moz-transform: scale(0.8);
        -ms-transform: scale(0.8);
        -o-transform: scale(0.8);
    }
    .subcontainer {
        padding: 20px 15px;
    }
    h1 {
        font-size: 30px;
    }
    .stepNavigation ul li {
        width: 100%;
        max-width: 100%;
        padding: 10px 0;
        text-align: right;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .stepNavigation {
        display: block;
        margin-left: -14px;
        margin-right: -14px;
    }
    .stepNavigation ul {
        display: block;
        width: 100%;
        padding: 0 20px;
    }
    .stepNavigation ul li span br {
        display: none;
    }
    .form-btn-row {
        text-align: center;
    }
    .form-btn-row .btn {
        margin-bottom: 10px;
    }
    .labeltitle {
        display: block;
    }
    .tabspagination li:first-child {
        display: block;
        width: 100%;
    }
    .formtabsFilters {
        padding-top: 0;
    }
    .formtabsFilters li {
        width: 100%;
    }
    .formmtop {
        margin-top: 10px;
    }
    .rowoption {
        text-align: center;
        padding-bottom: 0;
    }
    .rowoption .btn {
        margin: 0 10px;
    }
}

@media (max-width: 575.98px) {}

@media (max-width: 539.88px) {}

.error {
    color: #FF0000;
    direction: rtl;
    /*   margin-top: 10px;*/
}

.icon-logout {
    background: url(../images/logout.png);
}


/* text align right in all select box */

.bootstrap-select.btn-group .btn .filter-option {
    text-align: right !important;
}

.dropdown-menu .inner .show .dropdown-item {
    text-align: right !important;
}

#mainnavbar {
    display: none !important;
}

.no_of_lines {
    /*color:#87B756;*/
    text-decoration: underline;
    font-weight: bold;
}

.filter-option-inner-inner {
    color: #000000 !important;
}

.bootstrap-select button {
    padding-right: 12px;
}

.textbox_question {
    width: 70% !important;
}

#divLoading {
    /*  display : none; */
    /* display : block; */
    position: fixed;
    z-index: 1001;
    background-image: url('../images/loading.gif');
    background-color: #87B756;
    opacity: 0.4;
    background-repeat: no-repeat;
    background-position: center;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
}

#divLoading.show {}

#loadinggif.show {
    left: 50%;
    top: 50%;
    position: absolute;
    z-index: 101;
    width: 32px;
    height: 32px;
    margin-left: -16px;
    margin-top: -16px;
}

.custom-success-msg {
    background-color: #87B756 !important;
    border-color: #87B756 !important;
    color: #FFFF00;
    font-weight: bold;
}

.disablecontrol {
    background-color: #e9ecef !important;
    opacity: 1 !important;
}

.topborder {
    border-top: 5px solid #87B756;
}

.single-line {
    border-bottom: 5px solid #87B756;
    display: flex;
    margin: 15px 0px;
    box-shadow: aliceblue;
    box-shadow: -5px 0px 8px 1px rgb(0 0 0 / 23%);
    -webkit-box-shadow: -5px 0px 8px 1px rgb(0 0 0 / 23%);
    -moz-box-shadow: -5px 0px 8px 1px rgb(0 0 0 / 23%);
    padding: 10px 20px;
    border-radius: 32px;
    cursor: pointer;
    align-content: center;
    align-items: center;
}

.single-line .badge-primary{
    background: #87B756;
}

.additional-primary-fields-wrapper.no-height{
    height: 0px;
    overflow: hidden;
}
.sectionKasisFieldsToggler .informative-message{
    margin-bottom: -35px;
}
.stepNavigation .active .stepn a:hover {
    color: #2e3748 !important;
}

.modelnumber ::placeholder {
    font-size: 13px;
}

.stickynote {
    position: sticky !important;
    top: 0 !important;
    bottom: 70px !important;
    /*background: linear-gradient(90deg, rgba(40,51,69,0.88) 0.14%, rgba(46,55,72,0.88) 99.65% );*/
    z-index: 1000;
    background: #fff;
}

.mediumbtn {
    max-width: 250px !important;
    font-size: 14px !important;
}

.pac-item {
    direction: rtl !important;
    text-align: right !important;
}

.cancelrow {
    opacity: 0.5;
    background: #CCC;
    pointer-events: none;
}

.cancelrow .custom-control-input:disabled~.custom-control-label {
    color: #fff !important;
}

.internaltable {
    color: #000 !important;
}

.smallbtn {
    max-width: 150px !important;
    font-size: 14px !important;
    margin-left: 20px;
    padding: 10px 10px 10px !important;
}

.row_details {
    color: #000 !important;
}

.row_details: hover {
    color: #000 !important;
}

.rightalign {
    text-align: right !important;
    direction: rtl !important;
}

.table thead th,
.table td,
.table th {
    color: rgb(36, 36, 36);
}

.newtable thead th,
.table td,
.table th {
    padding: .75em 0 !important
}

.newtable tale {
    border: none
}

.newtable table:nth-child(2),
.newtable table:nth-child(2) th,
.newtable table:nth-child(2) td {
    background: #F2FBF8;
}

.remember-me {
    float: left
}

.remember-me label {
    margin: 0 10px
}

.init-hidden {
    display: none
}

#goods_row .form-group {
    margin-bottom: 18px;
}

#goods_row .formsection {
    padding: 0 0 5px;
}

#goods_row .formsectionbox {
    padding: 18px;
}

.tabspagination a {
    color: #fff;
}


/***********Step 3 Loader**********/

.loading-bg-inner {
    background-color: #87b75685;
    height: 100%;
    position: fixed;
    background-repeat: no-repeat;
    background-position: center;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    z-index: 9999;
}

.loading3 {
    font-family: "Arial Black", "Arial Bold", Gadget, sans-serif;
    text-transform: uppercase;
    width: 300px;
    text-align: center;
    line-height: 50px;
    position: fixed;
    left: 0;
    right: 0;
    top: 50%;
    margin: auto;
    transform: translateY(-50%);
    z-index: 99999;
}

.loading3 span {
    position: relative;
    z-index: 999;
    color: #fff;
}

.loading3:before {
    content: '';
    background: #000;
    width: 300px;
    height: 36px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    animation: 2s loadingBefore infinite ease-in-out
}

@keyframes loadingBefore {
    0% {
        transform: translateX(-14px);
    }
    50% {
        transform: translateX(14px);
    }
    100% {
        transform: translateX(-14px);
    }
}

.loading3:after {
    content: '';
    background: #87B756;
    width: 14px;
    height: 60px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    animation: 2s loadingAfter infinite ease-in-out;
}
.form-group.field-required.top-label label{
    margin-right: 25px;
}

.form-group.field-required.top-label::after{
    top: 0;
}

@keyframes loadingAfter {
    0% {
        transform: translateX(-50px);
    }
    50% {
        transform: translateX(50px);
    }
    100% {
        transform: translateX(-50px);
    }
}


/********************/

.login-select-box {
    box-shadow: -1px 6px 36px -3px rgb(0 0 0 / 30%);
    -webkit-box-shadow: -1px 6px 36px -3px rgb(0 0 0 / 30%);
    -moz-box-shadow: -1px 6px 36px -3px rgba(0, 0, 0, 0.30);
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    border-radius: 16px;
    background-color: #87b756cc;
    color: #fff;
    transition: 0.3s;
    cursor: pointer;
}

.login-select-box:hover {
    box-shadow: -1px 6px 36px -3px rgb(0 0 0 / 54%);
    -webkit-box-shadow: -1px 6px 36px -3px rgb(0 0 0 / 54%);
    -moz-box-shadow: -1px 6px 36px -3px rgba(0, 0, 0, 0.54);
}