﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */
:root {
    --officergreen: #00823C;
    --officergreenlight: #08B256;
    --officeryellow: #ffc107;
    --officeryellowlight: #ffd218;
    --officerred: #dc3545;
    --officerredlight: #ed4656;
}

body {
    /*זה מתקן את ההופעה של הקלנדר ככה שהוא לא יהיה חתוך*/
    position: relative;
    font-family:Assistant;
}

@font-face {
    font-family: Assistant;
    src: url(../Fonts/Assistant-VariableFont_wght.ttf);
}
@font-face {
    font-family: AssistantExtraBold;
    src: url(../Fonts/Assistant-ExtraBold.ttf);
}

.bootstrap-datetimepicker-widget {
    /*זה מתקן את ההופעה של הקלנדר ככה שהוא לא יהיה חתוך*/
    z-index: 9999 !important;
}

a.navbar-brand {
    padding-top:0px !important;

    white-space: normal;
    text-align: center;
    word-break: break-all;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  font-size: 14px;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.border-top {
  border-top: 1px solid #e5e5e5;
}
.border-bottom {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}


button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  position: relative;
  min-height: 100%;
}


.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  /* Set the fixed height of the footer here */
  height: 60px;
  line-height: 60px; /* Vertically center the text there */
}

/*Navbar-------------------------------------------------------------------------*/


html .primarynavbar-mcs {
    background-color: #fff;
    border-color: #fff;
    border-radius: 0;
}

html[data-theme='dark'] .primarynavbar-mcs {
    background-color: #333333;
    border-color: #333333;
    border-radius: 0;
}


html .primarynavbar-mcs .navbar-nav > li a {
    
    font-weight: bold;
}

html[data-theme='dark'] .primarynavbar-mcs .navbar-nav > li a {
    color: #007bff;
    font-weight: bold;
}

html .primarynavbar-mcs .navbar-nav > li a.nav-link:hover, html .primarynavbar-mcs .navbar-nav > li .nav-link.active {
    color: var(--officergreenlight);
    font-weight: bold;
}
    html .primarynavbar-mcs .navbar-nav > li a.dropdown-item.active{
        color:white;
    }
    html[data-theme='dark'] .primarynavbar-mcs .navbar-nav > li a:hover, html[data-theme='dark'] .primarynavbar-mcs .navbar-nav > li a.active {
        color: #0abd4e;
        font-weight: bold;
    }
.secondarynavbar-mcs {
    background-color: #000;
    border-color: #000;
    border-radius: 0;
}


    .secondarynavbar-mcs .navbar-nav > li > a {
        color: #fff;
        font-weight: bold;
    }

        .secondarynavbar-mcs .navbar-nav > li > a:hover, .secondarynavbar-mcs .navbar-nav > li > a.active {
            color: #00762d;
            font-weight: bold;
        }

        

.navbar-toggler {
    width: 60px;
    height: 35px;
    position: relative;
    margin: 10px auto 10px 10px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    border: 0px solid white !important;
    outline:1px solid white !important;
    box-shadow:none !important;
    
}

    .navbar-toggler span {
        display: block;
        position: absolute;
        height: 5px;
        width: 100%;
        background: black;
        border-radius: 9px;
        border: 0px solid white;
        opacity: 1;
        left: 0;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .25s ease-in-out;
        -moz-transition: .25s ease-in-out;
        -o-transition: .25s ease-in-out;
        transition: .25s ease-in-out;
    }

.navbar-toggler {
    border:none !important;
}

    .navbar-toggler span:nth-child(1) {
        top: 0px;
        -webkit-transform-origin: left center;
        -moz-transform-origin: left center;
        -o-transform-origin: left center;
        transform-origin: left center;
    }

    .navbar-toggler span:nth-child(2) {
        top: 15px;
        -webkit-transform-origin: left center;
        -moz-transform-origin: left center;
        -o-transform-origin: left center;
        transform-origin: left center;
    }

.navbar-toggler span:nth-child(3) {
    top: 30px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

    .navbar-toggler:not(.collapsed) span:nth-child(1) {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
        top: -3px;
        left: 8px;
        background: var(--officergreenlight);
    }

    .navbar-toggler:not(.collapsed) span:nth-child(2) {
        width: 0%;
        opacity: 0;
        background: var(--officergreenlight);
    }

    .navbar-toggler:not(.collapsed) span:nth-child(3) {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
        top: 39px;
        left: 8px;
        background: var(--officergreenlight);
    }


@media only screen and (min-width: 992px) {
  nav .dropdown:hover > .dropdown-menu {
        display: block;

    }
  nav .dropdown:hover > .dropdown-toggle:after {
        transform: rotate(180deg);
        transition: 0.5s;
    }
    .width-max-content {
        width: max-content;
        width: -moz-max-content;
        width: -webkit-max-content;
    }

}
.dropdown-toggle[aria-expanded="true"]:after {
    transform: rotate(180deg);
}


/*for the animation*/
.dropdown-toggle:after {
    transition: 0.5s;
    margin-right:0.5em;
}
.cyantext {
    color: #007bff;
}
.cyanhoverback:active, .cyanhoverback:focus, .cyanhoverback:hover, .cyanhoverback:hover > td {
    color: #fff !important;
    background-color: var(--officergreenlight) !important;
    outline: none;
}
    .cyanhoverback:active, .cyanhoverback:focus, .cyanhoverback:hover a {
        color: #fff !important;
    }
    .cyanhoverback:active, .cyanhoverback:focus, .cyanhoverback:hover a>i.text-success {
        color: #fff !important;
    }

.greentext {
    color: #00762d;
}
.greenhoverback:active, .greenhoverback:focus, .greenhoverback:hover {
    color: #fff;
    background-color: #00762d;
    outline: none;
}
.redtext{
    color:crimson;
}

.bluetext {
    color: #007bff;
}

.orangetext {
    color: #f6b10e;
}

.redhoverback:active, .redhoverback:focus, .redhoverback:hover {
    color: #fff !important;
    background-color: crimson !important;
    outline: none;
}

/*End of Navbar-------------------------------------------------------------------------*/
h1{
    padding-top:10px;
}
.top5 {
    padding-top: 5px;
}

.top7 {
    padding-top: 7px;
}

.top10 {
    padding-top: 10px;
}

.top15 {
    padding-top: 15px;
}

.bot15 {
    padding-bottom: 15px;
}
.bot30 {
    padding-bottom: 30px;
}

.top17 {
    padding-top: 17px;
}

.top20 {
    padding-top: 20px;
}

.top25 {
    padding-top: 25px;
}

.top30 {
    padding-top: 30px;
}

.top45 {
    padding-top: 45px;
}

.top50 {
    padding-top: 50px;
}

.top55 {
    padding-top: 55px;
}

.top60 {
    padding-top: 60px;
}

.top90 {
    padding-top: 90px;
}

.top120 {
    padding-top: 120px;
}

.top150 {
    padding-top: 150px;
}

.top250 {
    padding-top: 250px;
}

.top300 {
    padding-top: 300px;
}

.top330 {
    padding-top: 330px;
}

.top400 {
    padding-top: 400px;
}

.topminus15 {
    margin-top: -15px;
}

.topminus30 {
    margin-top: -30px;
}

.huge {
    font-size: 40px;
}

.big {
    font-size: 24px;
}

.small {
    font-size: 12px;
}

.bold {
    font-weight: bold;
}

.btn-warning,

.btn-warning:active,
.btn-warning:visited,
.btn-warning:focus {
    background-color: #f6b10e;
    border-color: #f6b10e;
}
    .btn-warning:hover {
        background-color: #e5a00d;
        border-color: #e5a00d;
    }

.Officerlist > li {
    margin: 0;
    padding-right: 42px;
    padding-top: 5px;
    padding-bottom: 5px;
    list-style: none;
    background-image: url("/images/SmallLogo.png");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 20px;
}



/*Range Slider NEW SKINS*/



.irs--blue {
    height: 55px;
}

    .irs--blue.irs-with-grid {
        height: 70px;
    }

    .irs--blue .irs-line {
        top: 33px;
        height: 12px;
        background-color: white;
        background: linear-gradient(to bottom, #ddd -50%, white 150%);
        border: 1px solid #ccc;
        border-radius: 12px;
    }

    .irs--blue .irs-bar {
        top: 33px;
        height: 12px;
        background-color: #92bce0;
        border: 1px solid #428bca;
        background: linear-gradient(to bottom, #ffffff 0%, #428bca 30%, #b9d4ec 100%);
        box-shadow: inset 0 0 1px 1px rgba(255, 255, 255, 0.5);
    }

    .irs--blue .irs-bar--single {
        border-radius: 12px 0 0 12px;
    }

    .irs--blue .irs-shadow {
        height: 1px;
        bottom: 16px;
        background-color: rgba(66, 139, 202, 0.5);
    }

    .irs--blue .irs-handle {
        top: 25px;
        width: 30px;
        height: 30px;
        border: 1px solid rgba(0, 0, 0, 0.3);
        background-color: #cbcfd5;
        background: linear-gradient(to bottom, white 0%, #B4B9BE 30%, white 100%);
        box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2), inset 0 0 3px 1px white;
        border-radius: 30px;
    }

        .irs--blue .irs-handle.state_hover,
        .irs--blue .irs-handle:hover {
            border-color: rgba(0, 0, 0, 0.45);
            background-color: #939ba7;
            background: linear-gradient(to bottom, white 0%, #919BA5 30%, white 100%);
        }

    .irs--blue .irs-min,
    .irs--blue .irs-max {
        top: 0;
        padding: 1px 5px;
        color: white;
        text-shadow: none;
        background-color: #9f9f9f;
        border-radius: 3px;
    }

    .irs--blue .irs-from,
    .irs--blue .irs-to,
    .irs--blue .irs-single {
        color: white;
        text-shadow: none;
        padding: 1px 5px;
        background-color: #428bca;
        background: linear-gradient(to bottom, #428bca 0%, #3071a9 100%);
        border-radius: 3px;
    }

    .irs--blue .irs-grid-pol {
        background-color: #428bca;
    }

    .irs--blue .irs-grid-text {
        color: #428bca;
    }

.irs--green {
    height: 55px;
}

    .irs--green.irs-with-grid {
        height: 70px;
    }

    .irs--green .irs-line {
        top: 33px;
        height: 12px;
        background-color: white;
        background: linear-gradient(to bottom, #ddd -50%, white 150%);
        border: 1px solid #ccc;
        border-radius: 12px;
    }

    .irs--green .irs-bar {
        top: 33px;
        height: 12px;
        background-color: #92bce0;
        border: 1px solid #428bca;
        background: linear-gradient(to bottom, #ffffff 0%, #00762d 30%, #00bb4d 100%);
        box-shadow: inset 0 0 1px 1px rgba(255, 255, 255, 0.5);
    }

    .irs--green .irs-bar--single {
        border-radius: 12px 0 0 12px;
    }

    .irs--green .irs-shadow {
        height: 1px;
        bottom: 16px;
        background-color: rgba(66, 139, 202, 0.5);
    }

    .irs--green .irs-handle {
        top: 25px;
        width: 30px;
        height: 30px;
        border: 1px solid rgba(0, 0, 0, 0.3);
        background-color: #cbcfd5;
        background: linear-gradient(to bottom, white 0%, #B4B9BE 30%, white 100%);
        box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2), inset 0 0 3px 1px white;
        border-radius: 30px;
    }

        .irs--green .irs-handle.state_hover,
        .irs--green .irs-handle:hover {
            border-color: rgba(0, 0, 0, 0.45);
            background-color: #939ba7;
            background: linear-gradient(to bottom, white 0%, #919BA5 30%, white 100%);
        }

    .irs--green .irs-min,
    .irs--green .irs-max {
        top: 0;
        padding: 1px 5px;
        color: white;
        text-shadow: none;
        background-color: #9f9f9f;
        border-radius: 3px;
    }

    .irs--green .irs-from,
    .irs--green .irs-to,
    .irs--green .irs-single {
        color: white;
        text-shadow: none;
        padding: 1px 5px;
        background-color: #428bca;
        background: linear-gradient(to bottom, #00762d 0%, #30cc3c 100%);
        border-radius: 3px;
    }

    .irs--green .irs-grid-pol {
        background-color: #008534;
    }

    .irs--green .irs-grid-text {
        color: #008534;
    }

.irs--orange {
    height: 55px;
}

    .irs--orange.irs-with-grid {
        height: 70px;
    }

    .irs--orange .irs-line {
        top: 33px;
        height: 12px;
        background-color: white;
        background: linear-gradient(to bottom, #ddd -50%, white 150%);
        border: 1px solid #ccc;
        border-radius: 12px;
    }

    .irs--orange .irs-bar {
        top: 33px;
        height: 12px;
        background-color: #ffc107;
        border: 1px solid #ffc107;
        background: linear-gradient(to bottom, #ffffff 0%, #f6b10e 30%, #fcc020 100%);
        box-shadow: inset 0 0 1px 1px rgba(255, 255, 255, 0.5);
    }

    .irs--orange .irs-bar--single {
        border-radius: 12px 0 0 12px;
    }

    .irs--orange .irs-shadow {
        height: 1px;
        bottom: 16px;
        background-color: rgba(66, 139, 202, 0.5);
    }

    .irs--orange .irs-handle {
        top: 25px;
        width: 30px;
        height: 30px;
        border: 1px solid rgba(0, 0, 0, 0.3);
        background-color: #cbcfd5;
        background: linear-gradient(to bottom, white 0%, #B4B9BE 30%, white 100%);
        box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2), inset 0 0 3px 1px white;
        border-radius: 30px;
    }

        .irs--orange .irs-handle.state_hover,
        .irs--orange .irs-handle:hover {
            border-color: rgba(0, 0, 0, 0.45);
            background-color: #939ba7;
            background: linear-gradient(to bottom, white 0%, #919BA5 30%, white 100%);
        }

    .irs--orange .irs-min,
    .irs--orange .irs-max {
        top: 0;
        padding: 1px 5px;
        color: white;
        text-shadow: none;
        background-color: #9f9f9f;
        border-radius: 3px;
    }

    .irs--orange .irs-from,
    .irs--orange .irs-to,
    .irs--orange .irs-single {
        color: white;
        text-shadow: none;
        padding: 1px 5px;
        background-color: #428bca;
        background: linear-gradient(to bottom, #f6b10e 0%, #fdd12e 100%);
        border-radius: 3px;
    }

    .irs--orange .irs-grid-pol {
        background-color: #f6b20f;
    }

    .irs--orange .irs-grid-text {
        color: #f6b20f;
    }

.irs--red {
    height: 55px;
}

    .irs--red.irs-with-grid {
        height: 70px;
    }

    .irs--red .irs-line {
        top: 33px;
        height: 12px;
        background-color: white;
        background: linear-gradient(to bottom, #ddd -50%, white 150%);
        border: 1px solid #ccc;
        border-radius: 12px;
    }

    .irs--red .irs-bar {
        top: 33px;
        height: 12px;
        background-color: #d45656;
        border: 1px solid #d45656;
        background: linear-gradient(to bottom, #ffffff 0%, #DC143C 30%, #ed254d 100%);
        box-shadow: inset 0 0 1px 1px rgba(255, 255, 255, 0.5);
    }

    .irs--red .irs-bar--single {
        border-radius: 12px 0 0 12px;
    }

    .irs--red .irs-shadow {
        height: 1px;
        bottom: 16px;
        background-color: rgba(66, 139, 202, 0.5);
    }

    .irs--red .irs-handle {
        top: 25px;
        width: 30px;
        height: 30px;
        border: 1px solid rgba(0, 0, 0, 0.3);
        background-color: #cbcfd5;
        background: linear-gradient(to bottom, white 0%, #B4B9BE 30%, white 100%);
        box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2), inset 0 0 3px 1px white;
        border-radius: 30px;
    }

        .irs--red .irs-handle.state_hover,
        .irs--red .irs-handle:hover {
            border-color: rgba(0, 0, 0, 0.45);
            background-color: #939ba7;
            background: linear-gradient(to bottom, white 0%, #919BA5 30%, white 100%);
        }

    .irs--red .irs-min,
    .irs--red .irs-max {
        top: 0;
        padding: 1px 5px;
        color: white;
        text-shadow: none;
        background-color: #9f9f9f;
        border-radius: 3px;
    }

    .irs--red .irs-from,
    .irs--red .irs-to,
    .irs--red .irs-single {
        color: white;
        text-shadow: none;
        padding: 1px 5px;
        background-color: #428bca;
        background: linear-gradient(to bottom, #DC143C 0%, #ef274f 100%);
        border-radius: 3px;
    }

    .irs--red .irs-grid-pol {
        background-color: #dd153d;
    }

    .irs--red .irs-grid-text {
        color: #dd153d;
    }

    /* End of Range Sliders New Skins*/

.strike {
    display: flex;
    flex-direction: row;
    color: #007bff;
}

    .strike:before, .strike:after {
        content: "";
        flex: 1 1;
        border-bottom: 1px solid grey;
        margin: auto;
    }

.btn-mcs {
    background-color: var(--officergreen) !important;
    border-color: var(--officergreen);
    color: #fff;
}

    .btn-mcs:hover {
        background-color: var(--officergreenlight) !important;
        border-color: var(--officergreenlight);
        color: #fff;
    }

    .btn-mcs:active {
        background-color: var(--officergreenlight) !important;
        border-color: var(--officergreenlight);
        color: #fff;
    }

        .btn-mcs:active:hover {
            background-color: var(--officergreenlight) !important;
            border-color: var(--officergreenlight);
            color: #fff;
        }

    .btn-mcs:focus {
        background-color: var(--officergreenlight) !important;
        border-color: var(--officergreenlight);
        color: #fff;
    }

.bg-mcs, #ComparisonTable th, #ClearingTable th, .ClearingTable th {
    background-color: var(--officergreenlight) !important;
    border-color: #fff;
    color: #fff;
}
#ComparisonTable th, #ComparisonTable td, #ClearingTable th, #ClearingTable td, .ClearingTable th, .ClearingTable td {
    padding: 0.3rem;
}
.btn-primary.active {
    outline: 0;
    box-shadow: 0 0 0 0.2rem #007bff
}
.btn-warning.active {
    outline: 0;
    box-shadow: 0 0 0 0.2rem #f6b10e
}
.btn-success.active {
    outline: 0;
    box-shadow: 0 0 0 0.3rem #00762d
}
@page {
    size: auto;
    margin: 0mm;
}
@media print {
    body {
        -webkit-print-color-adjust: exact;

    }
    .Printheader {
         position: fixed;
        top: 0pt;
        left: 0pt;
        right: 0pt;
    }
    .topprint{
        padding-top:140px;
    }
    .breakpage{
        page-break-after:always !important;
    }
    .btn-primary.active {
        outline: 3px solid #007bff;
    }

    .btn-warning.active {
        outline: 3px solid #f6b10e;
    }

    .btn-success.active {
        outline: 3px solid #00762d;
    }
    .bg-primary {
        background-color: #007bff !important;
    }

    .bg-warning {
        background-color: #f6b10e !important;
    }

    .bg-success {
        background-color: #00762d !important;
    }
    .col-print-1 {
        width: 8%;
        float: left;
    }

    .col-print-2 {
        width: 16%;
        float: left;
    }

    .col-print-3 {
        width: 25%;
        float: left;
    }

    .col-print-4 {
        width: 33% !important;
        float: left !important;
    }

    .col-print-5 {
        width: 42%;
        float: left;
    }

    .col-print-6 {
        width: 50%;
        float: left;
    }

    .col-print-7 {
        width: 58%;
        float: left;
    }

    .col-print-8 {
        width: 66%;
        float: left;
    }

    .col-print-9 {
        width: 75%;
        float: left;
    }

    .col-print-10 {
        width: 83%;
        float: left;
    }

    .col-print-11 {
        width: 92%;
        float: left;
    }

    .col-print-12 {
        width: 100%;
        float: left;
    }
    .top15-screen{
        padding-top:10px !important;
    }
}

.top15-screen{
    padding-top:15px;
}
.calcheader{
    font-size:18px;
}
.progress-bar {
    -webkit-transition: none !important;
    transition: none !important;
}
.lightbluetext {
    color: #92bce0;
}

/*SmallTable class*/
@media only screen and (max-width: 800px) {

    /* Force table to not be like tables anymore */
    .smalltable table,
    .smalltable thead,
    .smalltable tbody,
    .smalltable th,
    .smalltable td,
    .smalltable tr {
        display: block !important;
    }

    /* Hide table headers (but not display: none;, for accessibility) */
    .smalltable thead {
        display: none !important;
    }

    .smalltable tr {
        border: 1px solid #ccc !important;
    }

    .smalltable td {
        /* Behave  like a "row" */
        border: none !important;
        border-bottom: 1px solid #eee !important;
        position: relative !important;
        padding-right: 50%;
        white-space: normal !important;
        text-align: right !important;
        min-height: 30px !important;
    }

        .smalltable td:before {
            /* Now like a table header */
            position: absolute !important;
            /* Top/left values mimic padding */
            top: 9px !important;
            left: 50%;
            width: 45% !important;
            padding-left: 0% !important;
            text-align: right !important;
            font-weight: bold !important;
        }

    .table-condensed , .nochange {
        display: table !important;
        padding-right: 0px !important;
        overflow-x: hidden !important;
    }

    /*
	Label the data
	*/
    .smalltable td:before {
        content: attr(data-title) !important;
    }
}
.Track {
    font-family: 'Font Awesome\ 6 Free',-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-weight:900;
}
#op:hover {
    color:#000;
}
code, samp, var, [type="email"], [type="file"], [type="number"], [type="password"], [type="tel"], [type="url"]{
    direction:rtl !important;
    text-align:right !important;
}



/*spinner definition*/

#overlay {
    position: fixed;
    height:100%;
    width:100%;
    z-index: 9999;
    display: block;
}
/*end of spinner*/




/*Pricing Packages*/

.pricing_table {
    line-height: 150%;
    font-size: 12px;
    margin: 0 auto;
    padding-top: 10px;
    margin-top: 10px;
}

.price_block {
    color: #fff;
    list-style-type: none;
    transition: all 0.25s;
    box-sizing: border-box;
    margin-bottom: 10px;
    border-bottom: 1px solid transparent;
}

.pricing_table h3 {
    text-align: center;
    padding: 5px 0;
    background: #082d61;
    margin: 0 0 1px 0;
}

.price {
    text-align: center;
    display: table;
    background: #444;
    width: 100%;
    height: 40px;
}

.price_figure {
    font-size: 24px;
    vertical-align: middle;
    display: table-cell;
}

.price_number {
    font-weight: bold;
    display: block;
}

.price_tenure {
    font-size: 11px;
}

.features {
    min-height: 350px;
    background: #fafafa;
    color: #000;
    margin-bottom: 0px;
}

    .features.short {
        min-height: 160px;
    }

    .features.long {
        min-height: 350px;
    }

    .features li {
        padding: 8px 15px;
        border-bottom: 1px solid #ccc;
        font-size: 14px;
        list-style-type: none;
    }

.planfooter {
    padding: 15px;
    background: #fafafa;
    min-height: 30px;
}

.action_button {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    background: linear-gradient(#666, #333);
    padding: 5px 20px;
    font-size: 11px;
    text-transform: uppercase;
}

.price_block.active {
    box-shadow: 0 0 0px 5px rgba(0, 0, 0, 0.5);
    transform: scale(1.04) translateY(-10px);
    z-index: 1;
    border-bottom: 0 none;
}

    .price_block.active h3 {
        background: #00762d;
    }

    .action_button, .price_block.active .action_button {
        background: linear-gradient(#F9B84A, #DB7224);
    }

@media only screen and (min-width : 480px) and (max-width : 768px) {
    .price_block:nth-child(odd) {
        border-right: 1px solid transparent;
    }

    .price_block:nth-child(3) {
        clear: both;
    }

    .price_block:nth-child(odd):hover, .price_block.active:nth-child(odd) {
        border: 0 none;
    }
}

@media only screen and (min-width : 768px) {
    .price_block {
        border-right: 1px solid transparent;
        border-bottom: 0 none;
    }

        .price_block:last-child {
            border-right: 0 none;
        }

        .price_block.active {
            border: 0 none;
        }
}
/*End of Pricing Packages*/

.btn-file {
    position: relative;
    overflow: hidden;
}

    .btn-file input[type=file] {
        position: absolute;
        top: 0;
        right: 0;
        min-width: 100%;
        min-height: 100%;
        font-size: 100px;
        text-align: right;
        filter: alpha(opacity=0);
        opacity: 0;
        outline: none;
        background: white;
        cursor: inherit;
        display: block;
    }

.left10 {
    padding-left: 10px;
}

.right10 {
    padding-right: 10px;
}
.card-heading {
    padding: 10px;
}

.huge {
    font-size: 40px;
}

.big {
    font-size: 24px;
}

.small {
    font-size: 12px;
}
.firsttype {
    /* background-color: #082d61 !important;
    border-color: #082d61 !important;
    color: #fff !important;
       */
    background-color: grey !important;
    border-color: grey !important;
    color: white !important;
}

.secondtype, .tenderbox {
    background-color: #f1efef;
    border-color: #f1efef;
    color: #082d61;
}

    .tenderbox:hover {
        background-color: lightsteelblue;
        cursor: pointer;
    }

.firsttype > a {
    color: #fff;
}

.secondtype > a {
    color: #082d61;
}


    a:hover, a:focus {
        color: #2a437a;
    }

.FloatingTop {
    display:none;
    position: fixed;
    bottom: 20px;
    left: 100px;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.7);
    width: 50px;
    height: 50px;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 100;
}

    .FloatingTop i {
        color: #fff;
        margin: 0;
        position: relative;
        right: 16px;
        top: 15px;
        font-size: 19px;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

    .FloatingTop:hover {
        background: rgba(0, 0, 0, 0.9);
    }

        .FloatingTop:hover i {
            color: #082d61;
            top: 5px;
        }


.FloatingNew {
    position: fixed;
    bottom: 20px;
    right: 40px;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.7);
    width: 50px;
    height: 50px;
    display: block;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 100;
}

    .FloatingNew i {
        color: #fff;
        margin: 0;
        position: relative;
        right: 16px;
        top: 14px;
        font-size: 19px;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

    .FloatingNew:hover {
        background: rgba(0, 0, 0, 0.9);
    }

        .FloatingNew:hover i {
            color: #082d61;
            top: 5px;
        }
        .FloatingNew.rotate:hover i{

        
            color: crimson;
            top: 5px;
        }

.FloatingSearch {
    position: fixed;
    bottom: 20px;
    left: 40px;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.7);
    width: 50px;
    height: 50px;
    display: block;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 100;
}

    .FloatingSearch i {
        color: #fff;
        margin: 0;
        position: relative;
        right: 14px;
        top: 15px;
        font-size: 19px;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

    .FloatingSearch:hover {
        background: rgba(0, 0, 0, 0.9);
    }

        .FloatingSearch:hover i {
            color: #082d61;
            top: 5px;
        }

    .FloatingSearch.rotate:hover i {
        color: crimson;
        top: 5px;
    }

        /*open case animation*/
button[aria-expanded="true"] i.fa-angle-down {
    transform: rotate(180deg);
}
button[aria-expanded="false"] i.fa-angle-up {
    transform: rotate(180deg);
}


/*for the animation*/
button i.float-end {
    transition: 0.5s;
    margin-right: 0.5em;
}
.FloatingNew.rotate i.fa-plus {
    transform: rotate(45deg);
}

.handpointer{
    cursor:pointer;
}
@media (max-width: 575.98px) {
    .top10xs{
        padding-top:10px;
    }
}


@media (max-width: 767.98px) {
    .top10sm {
        padding-top:10px;
    }
}
@media (max-width: 991.98px) {
    .top10md {
        padding-top: 10px;
    }
}
td .row {
    margin-right: 0;
    margin-left:0;
}
.borderradius0{
    border-radius:0px;
}
.pad0{
    padding:0;
}
.custom-file-label::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f574" !important;
    background-color: #082d61;
    color: #fff;
}
table.table-bordered.dataTable th, table.table-bordered.dataTable td {
    border-right-width: 1px;
    border-left-width: 1px;
}

table.dataTable {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}

.imageover {
    position: absolute;
    bottom: 0;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.5); /* Black see-through */
    color: #f1f1f1;
    width: 100%;
    transition: .5s ease;
    opacity: 0;
    color: white;
    font-size: 20px;
    padding: 20px;
    text-align: center;
}

/* When you mouse over the container, fade in the overlay title */
.piccontainer:hover .imageover {
    opacity: 1;
}
/* Footer*/

.footer-distributed {
    background-color: #292c2f;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
    box-sizing: border-box;
    width: 100%;
    text-align: right;
    font: bold 16px sans-serif;
    padding: 55px 50px;
}

    .footer-distributed .footer-left,
    .footer-distributed .footer-center,
    .footer-distributed .footer-right {
        display: inline-block;
        vertical-align: top;
    }

    /* Footer left */

    .footer-distributed .footer-left {
        width: 40%;
    }

    /* The company logo */

    .footer-distributed h3 {
        color: #ffffff;
        font: normal 36px 'Cookie', cursive;
        margin: 0;
    }

        .footer-distributed h3 span {
            color: #082d61;
        }

    /* Footer links */

    .footer-distributed .footer-links {
        color: #ffffff;
        margin: 20px 0 12px;
        padding: 0;
    }

        .footer-distributed .footer-links a {
            display: inline-block;
            line-height: 1.8;
            text-decoration: none;
            color: inherit;
        }

.footer-links .linksheader {
    font: bold !important;
    color: #00af4f;
}

.footer-links a:hover {
    color: #E3AD06;
}

.signinput {
    padding-right: 30px;
}

.footer-distributed .footer-company-name {
    color: #8f9296;
    font-size: 14px;
    font-weight: normal;
    margin: 0;
}

/* Footer Center */

.footer-distributed .footer-center {
    width: 35%;
}

.footer-distributed .icons i {
    background-color: #33383b;
    color: #fff;
    font-size: 25px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    text-align: center;
    line-height: 42px;
    margin: 10px 15px;
    vertical-align: middle;
}

.footer-distributed .icons .fa-envelope {
    font-size: 17px;
    line-height: 38px;
}

.footer-distributed .icons p {
    display: inline-block;
    color: #44eefd;
    vertical-align: middle;
    margin: 0;
}

    .footer-distributed .icons p span {
        display: block;
        font-weight: normal;
        font-size: 14px;
        line-height: 2;
    }

    .footer-distributed .icons a {
        text-decoration: none;
        color:gainsboro;
    }
.footer-distributed .icons a:hover {
    text-decoration: none;
    color: red;
}

/* Footer Right */

.footer-distributed .footer-right {
    width: 20%;
}

.footer-distributed .footer-company-about {
    line-height: 20px;
    color: #92999f;
    font-size: 13px;
    font-weight: normal;
    margin: 0;
}

    .footer-distributed .footer-company-about span {
        display: block;
        color: #ffffff;
        font-size: 14px;
        font-weight: bold;
        margin-bottom: 20px;
    }

.footer-distributed .footer-icons {
    margin-top: 25px;
}

    .footer-distributed .footer-icons a {
        display: inline-block;
        width: 35px;
        height: 35px;
        cursor: pointer;
        background-color: #33383b;
        border-radius: 2px;
        font-size: 20px;
        color: #ffffff;
        text-align: center;
        line-height: 35px;
        margin-right: 3px;
        margin-bottom: 5px;
    }

/* If you don't want the footer to be responsive, remove these media queries */

@media (max-width: 880px) {


    .footer-distributed {
        font: bold 14px sans-serif;
    }

        .footer-distributed .footer-left,
        .footer-distributed .footer-center,
        .footer-distributed .footer-right {
            display: block;
            width: 100%;
            margin-bottom: 40px;
            text-align: center;
        }

            .footer-distributed .footer-center i {
                margin-left: 0;
            }
}


@media all {
    .page-break {
        display: none;
    }
}

@media print {
    .page-break {
        display: block;
        page-break-before: always;
    }
}
.note-editing-area {
    border: 1px solid rgba(0,0,0,0.125);
}

.note-dropdown-menu.dropdown-menu.note-table.show{
    min-width: 160px !important;
    max-width:300px !important;
    direction: ltr !important;
}
.note-dimension-display {
    /*direction: ltr !important;*/
}

div.page {
    border: 1px solid #D3D3D3;
    border-radius: 5px;
}

.fc-view-container *, .fc-view-container :after, .fc-view-container :before{
    box-sizing:border-box !important;
}
.fc-list-table{
    table-layout:fixed !important;

}
    .note-editable {
    font-size: 18px;
    font-family: David;
}

    .btn-warning{
        color:white !important;
    }

.topbg {
    background-size: cover;
    background-repeat: no-repeat;
    background: linear-gradient(rgba(255,255,255,.5), rgba(255,255,255,.5)), url("../images/background.jpg");
}


.shadowtop {
    -webkit-box-shadow: -1px -1px 18px 0px rgba(50, 50, 50, 0.75);
    -moz-box-shadow: -1px -1px 18px 0px rgba(50, 50, 50, 0.75);
    box-shadow: -1px -1px 18px 0px rgba(50, 50, 50, 0.75);
}
.product:hover {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    cursor: pointer;
}
    .product:hover input {
        -webkit-transform: scale(1.15);
        -moz-transform: scale(1.15);
        -o-transform: scale(1.15);
        -ms-transform: scale(1.15);
        transform: scale(1.15);
    }
.product input {
    -webkit-transition: 1s ease-in-out;
    -moz-transition: 1s ease-in-out;
    -o-transition: 1s ease-in-out;
    transition: 1s ease-in-out;
}
.product {
    -webkit-transition: 1s ease-in-out;
    -moz-transition: 1s ease-in-out;
    -o-transition: 1s ease-in-out;
    transition: 1s ease-in-out;
    box-shadow: 1px 1px 5px #304129;
}
.btn-outline-warning:hover{
    color:white;
}
a{
    cursor:pointer;
}
/*
html[data-theme='dark'] {
    filter: invert(1) hue-rotate(30deg);
    
}
html[data-theme='dark'] body{
    background-color:#000 !important;
    color:#000;
    filter: invert(1) hue-rotate(30deg);
}
    html[data-theme='dark'] img {
        filter: invert(1) hue-rotate(330deg);
    }
    html[data-theme='dark'] #lottie {
        filter: invert(1) hue-rotate(330deg);
    }
*/
html {
    transition: color 1000ms, background-color 1000ms;
}


html[data-theme='dark'] hr {
    border: 1px solid white;
}
html hr {
    border: 1px solid black;
}

    html a {
        color: #082d61;
    }
    html[data-theme='dark'] a {
        color: #007bff;
    }

    html[data-theme='dark'] .detailview {
        background-color:#000;
    }
    html .detailview {
        background-color: #fff;
    }

    html[data-theme='dark'] .secondarybackground {
        background-color: #333333;
    }

    html .secondarybackground {
        background-color: #F1F2F6;
    }
    html[data-theme='dark'] .secondarytext {
        color: #ccc;
    }

    html[data-theme='light'] .secondarytext {
        color: #666;
    }
    html[data-theme='dark'] .logo {
        filter:brightness(2);
    }



body {
    table-layout: fixed;
}
.icon-circle {
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.select2 {
    /*    width: 100% !important;*/
}

input[type="color"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"],
select:focus {
    font-size: 16px;
}

.dropdown-menu-lg{
    min-width:25rem;
}

.input-group > .select2-container--bootstrap {
    width: auto !important;
    flex: 1 1 auto !important;
}

    .input-group > .select2-container--bootstrap .select2-selection--single {
        height: 100% !important;
        line-height: inherit !important;
        padding: 0.5rem 1rem !important;
    }



.FloatingSum {
    position: fixed;
    bottom: 20px;
    right: 20%;
    color: white !important;
    background: #28a745;
    width: 60%;
   
    display: block;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 100;
    cursor: pointer;
}

    .FloatingSum:hover {
        background-color: #39b856;
    }



.FloatingPartial {
    position: fixed;
    bottom: 300px;
    left: 10%;
    color: white !important;
    background: #333333;
    padding:10px;
    opacity:90%;
    width: 20%;
    min-width:150px;

    display: block;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 100;
    cursor: pointer;
}

    .FloatingPartial:hover {
        background-color: #444444;
    }


body.modal-open {
    padding-right: 0px !important;
 

}

.navbar {
    padding-right: 16px !important;
}

a.item{
    text-decoration:none;
}


.nav-link{
    color:black;
    text-decoration:none;
    
}
.nav-item.nav-link.active {
    border-bottom-color:var(--officergreen);
    border-bottom-width:3px;
    color:var(--officergreen);
    
    
 }

.btn-outline-success{
    border-color:var(--officergreenlight);
    color:var(--officergreenlight);

}
.btn-outline-success:hover {
    border-color: var(--officergreen);
    color: white;
}

.btn-success {
    border-color: var(--officergreenlight);
    background-color: var(--officergreenlight);
}

.btn-success:hover {
    border-color: var(--officergreen);
    background-color: var(--officergreen);
}
.extrabold{
    font-weight:800;
    font-family:AssistantExtraBold;
   
}

.bigHeader{
    font-size:3rem;
}
.primarybackground{
    background-color:#FBF9F9;
}

nav {
    filter: drop-shadow(0px 3px 6px #00000029);
}
.slick-dots{
    width:95% !important;
}
.slick-slide {
    margin: 0 27px;
}
/* the parent */
.slick-list {
    margin: 0 -27px;
}

.ThirdBackground {
    background-color: #2A2D3E;
}
.FooterBackground {
    background-color: #E7F3FE;
}
.officergreenlight{
    color:var(--officergreenlight) !important;
    text-decoration:none;
}
    .officergreenlight:hover {
        color: var(--officergreen) !important;
        text-decoration: none;
    }


footer {
    height: 80px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.wrapper{
    min-height:100vh;
    padding-bottom:60px;
}

.btn-outline-secondary{
    color:black;
    font-weight:bold;
}
.dropdown-item.active, .dropdown-item:active{
    background-color:var(--officergreenlight)
}
.nav-link:focus, .nav-link:hover {
    color: var(--officergreenlight)
}

.shadow {
    box-shadow:0 0.15rem 1.75rem 0 rgb(58 59 69 / 15%) !important;
}
.border-start-black {
    border-right: 0.25rem solid #000 !important;
}

.border-start-officer-green {
    border-right: 0.25rem solid var(--officergreen) !important;
}
    .border-start-officer-green:hover {
        border-right: 0.25rem solid var(--officergreenlight) !important;
        background-color: #ade2ad;
    }
.border-start-officer-yellow {
    border-right: 0.25rem solid var(--officeryellow) !important;
}
.border-start-officer-yellow:hover {
    border-right: 0.25rem solid var(--officeryellowlight) !important;
    background-color:beige;
}
.border-start-officer-red {
    border-right: 0.25rem solid var(--officerred) !important;
    
}
    .border-start-officer-red:hover {
        border-right: 0.25rem solid var(--officerredlight) !important;
        background-color: pink;
    }


    th{
        font-weight:normal;
    }


    .backofficeryellow{
        background-color:var(--officeryellow) !important;
        color: black !important;

    }
    .backofficerred {
        background-color: var(--officerred) !important;
        color: #fff !important;
    }

    .no-boxshadow{
        box-shadow:none !important;
    }
    .colorofficergreenlight{
        color:var(--officergreenlight) !important;
    }
.tui-full-calendar-layout {
    direction: rtl;
}

ul.select2-results__options li:nth-child(even)[role="option"] {
    background-color: #f2f2f2 !important;
    color: black !important;
}
    ul.select2-results__options li:nth-child(even)[role="option"]:hover {
        background-color: var(--officergreen) !important;
        color: white !important ;
    }

ul.select2-results__options li:nth-child(odd)[role="option"] {
    background-color: #ffffff !important;
    color: black !important;
}
        ul.select2-results__options li:nth-child(odd)[role="option"]:hover {
            background-color: var(--officergreen) !important;
            color: white !important;
        }
.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--selected, .select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option[aria-selected="true"] {
    background-color: var(--officeryellow) !important;
    color: white !important;
}
.select2-results__options li:nth-child(odd)[role="group"], .select2-results__options li:nth-child(even)[role="group"] {
    background-color: var(--officerred) !important;
    color: white !important;
}
.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option[role="group"] .select2-results__group{
    color: white !important;
}
.bg-grey {
    background-color: #E9ECEF; /* Set the desired background color */
    color: #000000; /* Set text color to contrast with the background */
    padding: 20px; /* Adjust padding as needed */
}

.dashedofficeryellow {
    border: 1px dashed var(--officeryellow);
}



.jodit-container:not(.jodit_inline).jodit_disabled{
    background-color:#f2f2f2 !important;
}

    .jodit-container:not(.jodit_inline).jodit_disabled .jodit-workplace {
        opacity: 0.7 !important;
    }