:root {
    --blue: #004679;
    --white: #fff;
    --lightGray: #f3f3f3;
    --mediumGray: #ccc;
    --darkGray: #333;
    --lightkGray: #a1a1a1;
    --black: #000;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead {
    vertical-align: baseline;
    background: transparent;
    font-size: 100%;
    outline: 0;
    padding: 0;
    margin: 0;
    border: 0;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

html,
body {
    height: 100%;
}

body {
    /*background: url(../images/background.jpg) bottom center no-repeat fixed;
    background-size: 100% 100%;*/
    font-family: "Poppins", sans-serif;
    background-color: #f6faff;
    font-weight: normal;
    line-height: 20px;
    font-size: 14px;
    padding: 0;
    margin: 0;
}

a:link,
a:visited {
    text-decoration: none;
    color: #ffffff;
}

a {
    text-decoration: none;
    color: #ffffff;
}

a:hover {
    text-decoration: underline;
}

img {
    border: 0;
}

h1 {
    font-family: "Poppins", sans-serif;
    font-weight: normal;
    color: #333333;
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 10px;
}

h2 {
    font-family: "Poppins", sans-serif;
    font-weight: normal;
    color: #333333;
    font-size: 22px;
    line-height: 24px;
    margin-bottom: 5px;
}

h3 {
    font-family: "Poppins", sans-serif;
    margin: 0 0 10px 0;
    font-weight: normal;
    line-height: 27px;
    font-size: 18px;
    color: #333333;
}

h1 a:link,
h1 a:visited,
h2 a:link,
h2 a:visited {
    color: #333333;
}

h1 img,
h2 img {
    vertical-align: middle;
}

hr {
    border-bottom: 1px solid #e5e5e5;
    border-right: 1px solid #ffffff;
    border-left: 1px solid #ffffff;
    border-top: 1px solid #ffffff;
    margin: 10px 0;
}

table {
    border-collapse: collapse;
    width: 100%;
    overflow-x: auto;
}

table,
tr,
th,
td {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: #000000;
    padding: 10px;
}

table.responsive tbody tr:hover {
    background-color: #ececec;
}

thead td {
    font-weight: bold;
}

thead tr {
    border-bottom: 2px solid rgb(182, 182, 182);
}

tbody tr {
    border-bottom: 1px solid rgb(182, 182, 182);
}

tr.bold {
    font-weight: bold;
}

tr.underline {
    text-decoration: underline;
}

p {
    padding: 0px;
    margin: 0px;
}

label {
    font-weight: bold;
}

form {
    width: 100%;
    margin: auto;
}

form.w100 {
    width: 100%;
    margin: 0;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="radio"],
input[type="date"],
textarea,
select {
    font-family: "Poppins", sans-serif;
    margin-bottom: 3px;
    font-size: 100%;
    padding: 8px;
    width: 100%;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    background-color: #e5e5e5;
    background: -webkit-gradient( linear, left top, left bottom, from(#ffffff), to(#f0f0f0));
    background: -webkit-linear-gradient(top, #ffffff, #f0f0f0);
    background: -moz-linear-gradient(top, #ffffff, #f0f0f0);
    background: -ms-linear-gradient(top, #ffffff, #f0f0f0);
    background: -o-linear-gradient(top, #ffffff, #f0f0f0);
    background: linear-gradient(top, #ffffff, #f0f0f0);
    text-shadow: -1px -1px 0px #ffffff;
    border: 1px solid #cccccc;
    margin: 10px 0;
    margin-top: 5px;
    max-width: 500px;
    min-width: 125px;
}

input[type="date"] {
    padding: 0.5rem 1rem;
    font-family: "Poppins";
    border-radius: 5px;
    width: 50%;
}

.readonly-input {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    padding-left: 0 !important;
}

body.body-touch input[type="text"],
body.body-touch input[type="email"],
body.body-touch input[type="password"],
body.body-touch input[type="number"],
body.body-touch input[type="radio"],
body.body-touch textarea,
body.body-touch select {
    padding: 16px;
    margin: 20px 0;
    margin-top: 10px;
}

.btn-disabled {
    cursor: not-allowed;
    opacity: 0.2;
}

body.body-touch .btn,
body.body-touch .btn-blue,
body.body-touch .submit {
    padding: 20px 30px !important;
}

table input,
table textarea,
table select {
    margin-bottom: 0px;
}

textarea {
    min-height: 125px;
}

textarea.h100 {
    height: 100px;
}

textarea.h200 {
    height: 200px;
}

textarea.h300 {
    height: 300px;
}

.text-bold {
    font-weight: bold;
}

#add-media-form .form-select-files-wrapper .submit {
    display: flex;
    align-items: center;
}

.submit,
input.submit {
    background-color: #31c864;
    border: none;
    color: #ffffff !important;
    width: 100%;
    margin-top: 10px;
    cursor: pointer;
    font-size: 14px;
    padding: 10px 15px;
    min-width: 200px;
    width: auto;
    min-width: fit-content;
    border-radius: 3px;
    -webkit-appearance: none;
}

.submit:hover,
input.submit:hover {
    background-color: #58e286;
    color: #fff;
    text-decoration: none;
}


/* Knappar för borttagning (Röd) */

input.delete {
    background-color: #a80000;
    background: -webkit-gradient( linear, left top, left bottom, from(#f52e2e), to(#a80000));
    background: -webkit-linear-gradient(top, #f52e2e, #a80000);
    background: -moz-linear-gradient(top, #f52e2e, #a80000);
    background: -ms-linear-gradient(top, #f52e2e, #a80000);
    background: -o-linear-gradient(top, #f52e2e, #a80000);
    background: linear-gradient(top, #f52e2e, #a80000);
    -webkit-box-shadow: 0px 1px 0px 0px #0083e0 inset;
    -moz-box-shadow: 0px 1px 0px 0px #0083e0 inset;
    -ms-box-shadow: 0px 1px 0px0px #0083e0 inset;
    -o-box-shadow: 0px 1px 0px 0px #0083e0 inset;
    box-shadow: inset 0px 1px 0px 0px #0083e0;
    text-shadow: -1px -1px 0px #0083e0;
    border: 1px solid #a80000;
    font-weight: bold;
    color: #ffffff;
}

input.delete:hover {
    background-color: #a80000;
    border: 1px solid #a80000;
    -webkit-box-shadow: 0 0 10px 5px #a80000 inset;
    -moz-box-shadow: 0 0 10px 5px #a80000 inset;
    -ms-box-shadow: 0 0 10px 5px #a80000 inset;
    -o-box-shadow: 0 0 10px 5px #a80000 inset;
    box-shadow: 0 0 10px 5px #a80000 inset;
}

input[type="checkbox"] {
    background: none;
    padding: 0;
    width: 30px;
    border: 0;
}

input[type="radio"] {
    background: none;
    padding: 0;
    width: 30px;
    border: 0;
}


/* style checkbox */

.chbx-container-wrapper {
    display: block;
    width: 100%;
    /* margin: 40px 0; */
    margin: 5px 0;
}

.chbx-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 18px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: fit-content;
    /* jm */
}

.chbx-container p {
    padding-top: 4px;
}


/* Hide the browser's default checkbox */

.chbx-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}


/* Create a custom checkbox */

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 5px
}


/* On mouse-over, add a grey background color */

.chbx-container:hover input~.checkmark {
    background-color: #ccc;
}


/* When the checkbox is checked, add a blue background */

.chbx-container input:checked~.checkmark {
    background-color: #3a67c7;
}


/* Create the checkmark/indicator (hidden when not checked) */

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}


/* Show the checkmark when checked */

.chbx-container input:checked~.checkmark:after {
    display: block;
}


/* Style the checkmark/indicator */

.chbx-container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


/* end style checkbox */

:invalid {
    box-shadow: none;
}

:-moz-submit-invalid {
    box-shadow: none;
}

:-moz-ui-invalid {
    box-shadow: none;
}

#logo {
    float: left;
    display: flex;
    align-items: center;
    height: 100%;
}

#logo img {
    width: 120px;
}

.main-color {
    color: #004679 !important;
}


/* logo classes */

.logo-worker {
    display: block;
    /* text-indent: -9999px; */
    width: auto;
    height: 100%;
    /* background: url(../images/worker-of-construction-working-with-a-shovel-beside-material-pile.svg); */
    background: url(../images/worker-shovel-blue.svg);
    /* background-size: contain; */
    background-size: 40px;
    background-repeat: no-repeat;
    background-position: center;
}



.logo-folder-black-white {
    display: block;
    /* text-indent: -9999px; */
    width: 50px;
    height: 50px;
    background: url(../images/folder-svgrepo-com-sv.svg);
    /* background: url(../images/folder-svgrepo-com-blue.svg); */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.logo-folder-black-white:hover,
.logo-folder-black-white.selected {
    /* data:image/svg+xml;utf8, */
    /* background-image: url('<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 512 512" xml:space="preserve" width="800px" height="800px" fill="#004679" stroke="#004679" stroke-width="10.24"><g id="SVGRepo_bgCarrier" stroke-width="0"/><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"/><g id="SVGRepo_iconCarrier"> <path id="SVGCleanerId_0" style="fill:#004679;" d="M183.295,123.586H55.05c-6.687,0-12.801-3.778-15.791-9.76l-12.776-25.55 l12.776-25.55c2.99-5.982,9.103-9.76,15.791-9.76h128.246c6.687,0,12.801,3.778,15.791,9.76l12.775,25.55l-12.776,25.55 C196.096,119.808,189.983,123.586,183.295,123.586z"/> <g> <path id="SVGCleanerId_0_1_" style="fill:#004679;" d="M183.295,123.586H55.05c-6.687,0-12.801-3.778-15.791-9.76l-12.776-25.55 l12.776-25.55c2.99-5.982,9.103-9.76,15.791-9.76h128.246c6.687,0,12.801,3.778,15.791,9.76l12.775,25.55l-12.776,25.55 C196.096,119.808,189.983,123.586,183.295,123.586z"/> </g> <path style="fill:#004679;" d="M485.517,70.621H26.483c-4.875,0-8.828,3.953-8.828,8.828v44.138h476.69V79.448 C494.345,74.573,490.392,70.621,485.517,70.621z"/> <rect x="17.655" y="105.931" style="fill:#004679;" width="476.69" height="17.655"/> <path style="fill:#004679;" d="M494.345,88.276H217.318c-3.343,0-6.4,1.889-7.895,4.879l-10.336,20.671 c-2.99,5.982-9.105,9.76-15.791,9.76H55.05c-6.687,0-12.801-3.778-15.791-9.76L28.922,93.155c-1.495-2.99-4.552-4.879-7.895-4.879 h-3.372C7.904,88.276,0,96.18,0,105.931v335.448c0,9.751,7.904,17.655,17.655,17.655h476.69c9.751,0,17.655-7.904,17.655-17.655 V105.931C512,96.18,504.096,88.276,494.345,88.276z"/> <path style="fill:#004679;" d="M485.517,441.379H26.483c-4.875,0-8.828-3.953-8.828-8.828l0,0c0-4.875,3.953-8.828,8.828-8.828 h459.034c4.875,0,8.828,3.953,8.828,8.828l0,0C494.345,437.427,490.392,441.379,485.517,441.379z"/> <path style="fill:#004679;" d="M326.621,220.69h132.414c4.875,0,8.828-3.953,8.828-8.828v-70.621c0-4.875-3.953-8.828-8.828-8.828 H326.621c-4.875,0-8.828,3.953-8.828,8.828v70.621C317.793,216.737,321.746,220.69,326.621,220.69z"/> <path style="fill:#004679;" d="M441.379,167.724h-97.103c-4.875,0-8.828-3.953-8.828-8.828l0,0c0-4.875,3.953-8.828,8.828-8.828 h97.103c4.875,0,8.828,3.953,8.828,8.828l0,0C450.207,163.772,446.254,167.724,441.379,167.724z"/> <path style="fill:#004679;" d="M441.379,203.034h-97.103c-4.875,0-8.828-3.953-8.828-8.828l0,0c0-4.875,3.953-8.828,8.828-8.828 h97.103c4.875,0,8.828,3.953,8.828,8.828l0,0C450.207,199.082,446.254,203.034,441.379,203.034z"/> </g></svg>'); */
    background: url(../images/folder-svgrepo-com-blue.svg);
    width: 50px;
    height: 50px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}





.exceeded-stock-warning,
.exceeded-pick-stock-warning {
    margin-left: 10px;
    display: none;
}

.exceeded-stock-warning i,
.exceeded-pick-stock-warning i {
    color: #f52e2e;
}

.exceeded-stock-text,
.exceeded-pick-stock-text {
    color: #f52e2e;
    font-size: 12px;
}

.exceeded-picklists .exceeded-pick-stock-warning,
.exceeded-stock .exceeded-stock-warning {
    display: inline;
}

.quantity-input {
    max-width: 50px !important;
}


/* Input */

.Input {
    margin-top: 20px;
}

.Input input {
    width: 100%;
    max-width: 400px;
}

.Input label {
    display: block;
}

.Input__checkbox {
    padding: 10px 0;
}

input:focus {
    outline: none;
    border: 1px solid #888888;
}

label {
    font-size: 15px;
}


/* Button */

.Button__holder {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.Button {
    display: inline-block;
    padding: 5px 15px;
    background-color: #ffe479;
    color: #000;
    border: 0;
    cursor: pointer;
    font-size: 13px;
    margin-top: 20px;
    border-radius: 10px;
}

.Button--success {
    background-color: #005ea8;
    color: #fff;
}

.Button--danger {
    background-color: #921b1b;
    color: #fff;
}


/* Login */

.Login__holder {
    width: 100%;
    height: 100%;
    display: flex;
    margin: 0;
}

.Login__box {
    display: flex;
    margin: auto;
    flex-direction: column;
}

.Login {
    width: 400px;
    background-color: #ffffff;
    margin: auto;
    padding: 25px;
    border: 1px solid #d4d4d4;
    border-radius: 10px;
}

.Login__Header {
    /*background-image: url('../images/logo.png');*/
    height: 100px;
    margin-bottom: 20px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.Login__footer {
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
}

.Login__h1 {
    color: var(--blue);
    text-align: center;
}


/* Modal */

.Modal__holder {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    z-index: 20000;
    justify-content: center;
    align-items: center;
}

.Modal__headline {
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 10px;
}

.Modal {
    max-width: 700px;
    min-height: 100px;
    background: #ffffff;
    /*margin: auto;*/
    border: 1px solid #d4d4d4;
    z-index: 100;
    padding: 25px;
    border-radius: 10px;
}

.Modal__buttons {
    display: flex;
}

.Modal__buttons .btn {
    margin-right: 10px;
}

.Modal ul {
    list-style-type: none;
}


/* Loader */

.Loader {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
}

.Fader {
    width: 100%;
    height: 100%;
    background: black;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0.5;
}

.Loader__Holder {
    width: 100%;
    height: 100%;
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
}

.Loader__spinner {
    width: 400px;
    height: 200px;
    background: #ffffff;
    border: 1px solid #ededed;
    margin: auto;
    display: flex;
}


/* Header */

.Header {
    width: 100%;
    height: 74px;
    display: flex;
    justify-content: flex-end;
    position: fixed;
    top: 0;
    left: 0;
}


/* Usermenu */

.Usermenu__holder {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 20px;
    color: #ffffff;
    cursor: pointer;
}

.Usermenu__icon {
    width: 40px;
    height: 40px;
    margin-right: 20px;
    display: flex;
}

.Usermenu__icon i {
    margin: auto;
}

.Usermenu__button {
    margin-left: 10px;
}

.Usermenu {
    display: none;
    width: 320px;
    background-color: #ffffff;
    position: absolute;
    right: 0;
    top: 72px;
    padding: 25px 0;
    border: 1px solid #ededed;
    z-index: 100;
}

.Usermenu li {
    color: #000;
    background: #fff;
    margin-top: 10px;
    text-align: center;
    list-style-type: none;
}

.Usermenu li a {
    padding: 10px 10px;
    display: block;
    color: #000;
    text-decoration: none;
    transition: all 0.4s ease;
}

.Usermenu li a:hover {
    background-color: #005ea8;
    color: #ffffff;
    transition: all 0.4s ease;
}

.Usermenu li a.active {
    background-color: #0083e0;
    color: #ffffff;
}


/* Table */

.Table {
    border-collapse: collapse;
    width: 100%;
}

.Table td,
.Table th {
    border: 1px solid #ddd;
    padding: 8px;
}

.Table tr:nth-child(even) {
    background-color: #f2f2f2;
}

.Table tr:hover {
    background-color: #ddd;
}

.Table th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: #2f599e;
    color: white;
}

.User__confirm-delete,
.User__edit {
    cursor: pointer;
}

#User__change-password-holder {
    display: none;
}


/* Messages */

.Message__error {
    background-color: #f65d5d;
    color: #fff;
    /*text-align: center; */
    padding: 25px;
    margin: 40px 0;
    font-size: 16px;
}

.Message__success {
    background-color: #31c864;
    color: #fff;
    /*text-align: center; */
    font-weight: bold;
    padding: 25px;
    margin: 40px 0;
    font-size: 16px;
}

.btn,
a.btn:link,
a.btn:visited {
    background-color: #ffe479;
    padding: 10px 15px;
    color: #000;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    /*line-height: 50px;*/
    cursor: pointer;
    display: inline-block;
    margin: 10px 0;
    position: relative;
    border: 0;
    line-height: 20px;
    min-width: fit-content;
    -webkit-appearance: none;
}


/*
.btn span.fa,
.btn i.fa {
    margin-left: 10px;
}
*/

.btn-blue,
a.btn-blue:link,
a.btn-blue:visited {
    background-color: var(--blue);
    color: #fff;
}

.btn-blue:hover,
a.btn-blue:link:hover,
a.btn-blue:visited:hover {
    color: #fff;
}

.btn-gray,
a.btn-gray:link,
a.btn-gray:visited {
    background: #ededed;
    color: gray;
    cursor: no-drop;
}

.btn-gray-back,
a.btn-gray-back:link,
a.btn-gray-back:visited {
    background: #ededed;
    color: #000;
}

.btn-red,
a.btn-red:link,
a.btn-red:visited {
    background: #f65d5d;
    color: #fff;
    cursor: pointer;
}

a.btn-gray-enabled {
    background-color: #ededed !important;
    color: #000;
}

.btn.f-left span.fa,
.btn.f-left i.fa {
    margin: 0 10px 0 0;
}

.btn:hover,
a.btn:hover {
    text-decoration: none;
    opacity: 0.7;
}

.btn-big,
a.btn-big:link,
a.btn-big:visited {
    padding: 35px 20px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    font-size: 18px;
    text-align: center;
    color: #004679;
    height: 145px;
    position: relative;
    display: flex;
    flex-direction: column;
    width: 20%;
    width: calc(20% - 20px);
    margin: 0 20px 20px 0;
}

.btn-big i.fa,
.btn-big i.fas {
    font-size: 35px;
    padding-bottom: 10px;
}

.btn-big:hover,
a.btn-big:hover {
    background-color: #ffe479;
    color: #000;
    text-decoration: none;
}

.puff-notice {
    position: absolute;
    top: 20px;
    right: 20px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: #28a5ff;
    font-size: 16px;
}

.no-margin {
    margin: 0;
}

.no-padding {
    padding: 0;
}

iframe {
    width: 100%;
    margin: 0;
}

ul.tree,
ul.tree ul {
    list-style-type: none !important;
}

ul.tree>li {
    font-weight: bold;
}

ul.tree>li>ul {
    font-weight: normal;
}


/* Klasser */

.clear {
    text-indent: -4000px;
    line-height: 0;
    display: block;
    font-size: 0;
    clear: both;
    height: 0;
}

.round {
    -webkit-border-top-right-radius: 15px;
    -moz-border-radius-topright: 15px;
    -ms-border-top-right-radius: 15px;
    -o-border-top-right-radius: 15px;
    border-top-right-radius: 15px;
}

.shadow {
    -webkit-box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.5);
    -ms-box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.5);
    -o-box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.5);
}

.loading {
    width: 100%;
    text-align: center;
}

.hide {
    display: none;
}

.center {
    text-align: center;
}

.left {
    text-align: left;
}

.right {
    text-align: right;
}

.f-left {
    float: left;
}

.f-right {
    float: right;
}

.fa-icon-medium {
    font-size: 30px;
}

.fa-icon-large {
    font-size: 80px;
}

.small {
    font-size: 12px;
}

.fleft {
    float: left;
}

.hint {
    color: #666;
}

.active {
    color: #005c9e;
    font-weight: bold;
}

header {
    width: 100%;
    float: left;
    padding: 0 20px;
    background-color: #004679;
    text-align: center;
    box-shadow: 0 7px 14px rgba(171, 171, 171, 0.25), 0 5px 5px rgba(171, 171, 171, 0.22);
    height: 70px;
}

.header-login {
    position: fixed;
}

header .profile-menu-action {
    vertical-align: middle;
    line-height: 40px;
    float: right;
    color: #fff;
    margin: 15px 0;
    display: flex;
    justify-items: center;
    align-items: center;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 45px;
}

header .profile-menu-action:hover {
    text-decoration: none;
    opacity: 0.7;
}

header .profile-menu-action div {
    display: flex;
}

header .profile-menu-action .user-image {
    float: left;
    padding-right: 10px;
}

header .profile-menu {
    display: none;
}

section {
    float: none;
    margin: 0;
    padding: 20px 0 20px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

section .content {
    padding: 20px;
    background-color: #fff;
    /* float: left; */
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
    -ms-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
    -o-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
}

.w100 {
    width: 98%;
    margin: 0 0 2% 2%;
}

.w50 {
    width: 48%;
    margin: 0 0 2% 2%;
}

.w33 {
    width: 31.3%;
    margin: 0 0 2% 2%;
}

.w25 {
    width: 23%;
    margin: 0 0 2% 2%;
}

.w100-nopm {
    width: 100%;
    margin: 0;
    padding: 0;
    float: left;
}

.w50-nopm {
    width: 50%;
    margin: 0;
    padding: 0;
    float: left;
}

.w50-keep-nopm {
    width: 50%;
    margin: 0;
    padding: 0;
    float: left;
}

.w33-nopm {
    width: 33.33%;
    margin: 0;
    padding: 0;
    float: left;
}

.w25-nopm {
    width: 25%;
    margin: 0;
    padding: 0;
    float: left;
}

.mobile {
    display: none;
}

.desktop {
    display: inline-block;
}

td.desktop,
th.desktop {
    display: table-cell;
}

.colorbox-table {
    width: 100%;
    text-align: left;
    margin-bottom: 60px;
}

.colorbox-table tbody tr:nth-child(odd) {
    background-color: #f7f7f7;
}

.colorbox-table td {
    vertical-align: middle;
}

.colorbox-table tbody tr:hover {
    background-color: #ececec;
}

#update_user_errors,
#add_user_errors {
    padding: 40px 20px;
    margin: 20px 0;
    list-style-type: none;
    background-color: #f65d5d;
    color: #ffffff;
}

.not-valid {
    color: #f65d5d;
}

.status-box {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    top: 3px;
    position: relative;
    display: inline-block;
}

.status-box {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    top: 3px;
    position: relative;
}

.status-box.good {
    background-color: #3b9617;
}

.status-box.bad {
    background-color: #cc0000;
}

a.app-menu:link,
a.app-menu:visited {
    margin: 15px 0 0 0;
    color: #fff;
    float: left;
}


/* small-link-btn */
body.body-touch .btn.small-link-btn {
    padding: 4px 10px !important;
}


.delete-confirm,
.deliver-confirm,
.stock-exceeded-confirm,
.overdelivery-info {
    min-width: 300px;
    min-height: 200px;
    padding: 20px;
    text-align: center;
    z-index: 10000;
    background-color: rgb(255, 255, 255);
    color: #000;
    display: none;
    border-radius: 5px;
    /* position: absolute; */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 7px 14px rgba(171, 171, 171, 0.25), 0 5px 5px rgba(171, 171, 171, 0.22);
    border: 2px solid rgb(233, 233, 233);
    flex-flow: column;
    justify-content: center;
}

.overdelivery-info.open {
    display: flex;
    align-items: center;
    justify-content: center;
}

.overdelivery-info .btn {
    margin-top: 10px;
}


/* Loader */

.Loader {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
}

.Fader {
    width: 100%;
    height: 100%;
    background: black;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0.5;
}

.Loader__Holder {
    width: 100%;
    height: 100%;
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
}

.Loader__spinner {
    width: 400px;
    height: 200px;
    background: #ffffff;
    border: 1px solid #ededed;
    margin: auto;
    display: flex;
}


/* Usermenu */

.Usermenu__holder {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 20px;
    color: #ffffff;
    cursor: pointer;
}

.Usermenu__icon {
    width: 40px;
    height: 40px;
    margin-right: 20px;
    display: flex;
}

.Usermenu__icon i {
    margin: auto;
}

.Usermenu__button {
    margin-left: 10px;
}

.Usermenu {
    display: none;
    width: 320px;
    background-color: #ffffff;
    position: absolute;
    right: 0;
    top: 72px;
    padding: 25px 0;
    border: 1px solid #ededed;
    z-index: 100;
}

.Usermenu li {
    color: #000;
    background: #fff;
    margin-top: 10px;
    text-align: center;
    list-style-type: none;
}

.Usermenu li a {
    padding: 10px 10px;
    display: block;
    color: #000;
    text-decoration: none;
    transition: all 0.4s ease;
}

.Usermenu li a:hover {
    background-color: #004679;
    color: #ffffff;
    transition: all 0.4s ease;
}

.Usermenu li a.active {
    background-color: #004679;
    color: #ffffff;
}


/*
 * Users
 */

.user-header {
    display: flex;
    margin-bottom: 30px;
    justify-content: space-between;
}

.search-holder {
    width: 100%;
    margin-top: 10px;
}

.search-holder form {
    display: flex;
}

.search-holder form input,
.search-holder form .btn {
    margin: 0 !important;
}

.search-holder form .btn {
    margin-left: 10px !important;
}

.box25 {
    width: 20%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
}


/* ANIMATIONS on adding,updating and removing posts */

#added-div,
#updated-div,
#deleted-div {
    height: 50px;
    width: 100%;
    overflow: hidden;
    position: fixed;
    bottom: 0;
    z-index: 9999;
    opacity: 0;
}

#added-div p,
#updated-div p,
#deleted-div p {
    text-align: center;
    line-height: 50px;
    font-weight: bold;
    font-size: 120%;
    color: #fafafa;
}

#updated-div p {
    color: #000;
}

#added-div {
    background-color: #31c864;
}

#updated-div {
    background-color: #ffe479;
}

#deleted-div {
    background-color: #f65d5d;
}

.on {
    animation-name: popUp;
    animation-duration: 4s;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
}


/* SEARCH BOX RESULTS */

.search-box-ajax .result a {
    display: block;
    text-align: center;
}

.red,
a.red {
    color: #f65d5d;
}

.green {
    color: #31c864;
}

.blue,
a.blue {
    color: var(--blue);
}

.yellow {
    color: #ffe479;
}

.red-background {
    /* background-color: rgb(255, 188, 188)!important; */
    border-left: 10px solid #f65d5d;
    padding: 0 5px;
}

.orange-background {
    /* background-color: rgb(255, 238, 205)!important;*/
    border-left: 10px solid rgb(250, 238, 76);
    padding: 0 5px;
}

.bold {
    font-weight: bold;
}

input:disabled {
    border: none;
    background: #fff;
    background-color: #fff;
}

input[type="submit"]:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

@keyframes popUp {
    0% {
        bottom: -50px;
        opacity: 0;
    }
    10% {
        bottom: -25px;
        opacity: 0.8;
    }
    20% {
        bottom: 0px;
        opacity: 0.9;
    }
    79% {
        bottom: 0px;
        opacity: 1;
    }
    90% {
        bottom: -25px;
        opacity: 0.9;
    }
    99% {
        bottom: -50px;
        opacity: 0.8;
    }
    100% {
        bottom: -50px;
        opacity: 0;
    }
}


/* css box- */

.box-flex-row {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.box-flex-row .box-100 {
    background-color: #e3e3e3;
}


/* special */

.box-50-no-margin-top-botttom {
    /* border: 1px solid red; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 15px;
    width: calc(50% - 30px);
    padding: 0 10px;
}

.box-25-no-margin-top-botttom {
    /* border: 1px solid red; */
    display: block;
    flex-direction: column;
    justify-content: center;
    margin: 0 15px;
    width: calc(25% - 30px);
    padding: 0 10px;
}

.box-50-no-margin-top-botttom input {
    max-width: unset;
}

#cboxLoadedContent .content .box-flex-row .box-50 {
    background-color: #e3e3e3;
}

#job-info-show-wrapper .box-flex-row .box-50 {
    background-color: #e3e3e3;
}



/* .job-dashboard-list */

.job-dashboard-list-filter-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

#project-list-filter{
    width: 100%;
    display: flex;
}
.project-list-filter-form {
width: 100%;
}

.job-dashboard-list-filter-wrapper select {
    max-width: unset;
    width: 100%;
}

.job-dashboard-list .job-dashboard-list-filter-wrapper .box-25
.job-dashboard-list .job-dashboard-list-filter-wrapper .box-30,
.job-dashboard-list .job-dashboard-list-filter-wrapper .box-40,
.job-dashboard-list .job-dashboard-list-filter-wrapper .box-50,
.job-dashboard-list .job-dashboard-list-filter-wrapper .box-75 {
    margin-left: 0;
    padding-left: 0;
}

.job-dashboard-list .job-dashboard-list-filter-wrapper .box-25 {
    margin-left: 0;
    padding-left: 0;
}


.job-dashboard-list .job-dashboard-list-filter-wrapper .project-search {
    width: 100%;
}


/*  */




/* new */
.box-20 {
    /* border: 1px solid red; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 15px;
    width: calc(20% - 30px);
    padding: 10px;
}

.box-20 input {
    width: 100%;
    max-width: unset;
}



.box-25 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 15px;
    width: calc(25% - 30px);
    padding: 10px;
}


.box-30 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 15px;
    width: calc(30% - 30px);
    padding: 10px;
}

.box-40 {
    /* border: 1px solid red; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 15px;
    width: calc(40% - 30px);
    padding: 10px;
}

.box-40 input {
    width: 100%;
    max-width: unset;
}





.box-50 {
    /* border: 1px solid red; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 15px;
    width: calc(50% - 30px);
    padding: 10px;
}

.box-50 input {
    max-width: unset;
}

.box-75 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 15px;
    width: calc(75% - 30px);
    padding: 10px;
}

.box-100 {
    /* border: 1px solid red; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 15px;
    width: calc(100% - 30px);
    padding: 10px;
}

.box-100 input,
.box-100 textarea {
    max-width: unset;
}

.box-100-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 15px;
    width: calc(100% - 30px);
    padding: 10px;
}

.w-50 {
    width: 50%;
}

.w-100 {
    width: 100%;
}

.max-w-300 {
    max-width: 300px;
}

.max-w-500 {
    max-width: 500px;
}

.max-w-642 {
    max-width: 642px;
}

.max-w-800 {
    max-width: 800px;
}

.action-btn-wrapper {
    display: flex;
    margin: 0 25px;
}

.action-btn-wrapper .btn {
    margin-right: 10px;
}


/* end css box */


/* css for manage job */

.get-gps-geolocation,
.pick-gps-geolocation {
    width: 25%;
}

.job-manage-wrapper h1,
.job-manage-wrapper h2 {
    font-size: 1.5rem;
    margin-left: 15px;
    padding-left: 10px;
}



.internal-users-list-wrapper, 
.external-users-list-wrapper {
    border: 1px solid #333;
    padding: 1rem;
}


/* css for google map show job on map */

.job-info-modal::-webkit-scrollbar {
    display: none;
}

.job-info-modal {
    display: none;
    width: 100%;
    width: auto;
    padding: 4rem;
    height: auto;
    min-height: 30rem;
    min-width: 50rem;
    background-color: var(--white);
    position: absolute;
    /* top: 50%; */
    top: 0%;
    left: 50%;
    /* transform: translate(-50%, -50%); */
    /* transform: translate(-50%, -55%); */
    transform: translate(-50%, 0%);
    border-radius: 0.5rem;
    justify-content: center;
    align-items: center;
    box-shadow: 0 7px 14px rgba(48, 48, 48, 0.1), 0 5px 5px rgba(90, 90, 90, 0.1);
    /* overflow: scroll; */
    overflow-y: scroll;
    z-index: 999999;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.map-modal-content,
.job-info-modal-content {
    width: 100%;
}

.map-modal-iframe {
    width: 100%;
    min-height: 30rem;
    border: none !important;
}

.map-modal-close,
.job-info-modal-close {
    position: absolute;
    width: 20px;
    height: 20px;
    top: 20px;
    opacity: 0.7;
    right: 27px;
    display: block;
    color: rgba(0, 0, 0);
    font-size: 0px;
}

.map-modal-close i,
.job-info-modal-close i {
    font-size: 2rem;
    cursor: pointer;
}


.more-info-modal .banner {
    padding: 10px;
    margin: 0 15px;
}

.media-list .file-mandatory-to-read {
    display: inline-flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 344px;
    padding: 8px;
}


.media-folder-selector-wrapper {
    display: flex;
    /* flex-flow: row; */
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 1rem 0;
    margin: 1rem 0;
}

.media-folder-selector-wrapper .media-folder-selector {
    margin-right: 1.4rem;
    width: calc(20% - 0px);
}


.big-fat-blue {
    color: var(--blue);
    font-weight: bold;
    font-size: 2.2rem;
    margin-left: 15px;
    padding: 0px 10px 20px 0px;
    line-height: 40px;
}


/* css for map info color */

.color-info-map-icons {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    /* test */
    /* border: 1px solid rgba(171, 171, 171, 0.22); */
}

.user-geoloc-map-icon {
    display: flex;
    align-items: center;
    padding: 1rem;
}

.user-geoloc-map-icon img {
    /* width: 50px; */
    width: 30px;
    height: auto;
}

.color-info-map-icons-gray {
    display: flex;
    align-items: center;
    padding: 1rem;
}

.color-info-map-icons-gray img {
    /* width: 50px; */
    width: 30px;
    height: auto;
}

.color-info-map-icons-blue {
    display: flex;
    align-items: center;
    padding: 1rem;
}

.color-info-map-icons-blue img {
    /* width: 50px; */
    width: 30px;
    height: auto;
}

.color-info-map-icons-green {
    display: flex;
    align-items: center;
    padding: 1rem;
}

.color-info-map-icons-green img {
    /* width: 50px; */
    width: 30px;
    height: auto;
}

.color-info-map-icons-attention {
    display: flex;
    align-items: center;
    padding: 1rem;
}

.color-info-map-icons-attention img {
    /* width: 50px; */
    width: 30px;
    height: auto;
}


/* css for media module */

.media-list-wrapper h1 {
    font-size: 1.5rem;
}

.box-media-list {
    display: flex;
    width: 100%;
    align-items: flex-start;
    justify-content: space-between;
    border: 1px #ccc;
    border-style: groove;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 10px;
}

.icon img {
    border-radius: 3px;
    width: 48px;
}

.icon {
    color: #000;
}

.file_info {
    width: max-content;
    color: #000;
}

.file_info span {
    color: #000;
}


.box-media-list a:hover {
    background-color: rgb(213 213 213 / 20%);
}



/* line awesome icon */
.box-media-list .la-eye {
    color: var(--blue);
    font-size: 20px;
}
.box-media-list .la-check {
    color: var(--blue);
    font-size: 20px;
}


.is-mandatory-to-read-wrapper {
    margin-right: 10px;
}

/* btn approve */
.box-media-list .btn.user-read-file-and-approved {
    padding: 4px 10px !important;
}


.box-media-list .element-visible-for-admin {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.box-media-list .element-visible-for-admin .btn {
    padding: 10px 10px !important;
}


.box-media-list.images,
.box-media-list.documents,
.box-media-list.drawings,
.box-media-list.work_environment {
    display: none;
}

/*  */


/* info tooltip */
/* Tooltip text */
.info-tooltip-media .info-tooltip-media-text {
    visibility: hidden;
    width: 277px;
    background-color: #fdfdfd;
    color: #000000;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
   
    /* Position the tooltip text - see examples below! */
    position: absolute;
    bottom: 89%;
    left: 0;
    /* transform: translate(-50%, 0); */
    z-index: 1;

    transition: all 0.4s ease;

  }

  .info-tooltip-media .info-tooltip-media-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 15%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: black transparent transparent transparent;
  }
  
  /* Show the tooltip text when you mouse over the tooltip container */
  .info-tooltip-media:hover .info-tooltip-media-text {
    visibility: visible;
  }


  /* tooltip users open/read file info */
  .info-tooltip-media-users-readed .info-tooltip-media-users-readed-text {
    visibility: hidden;
    /* width: 277px; */
    width: auto;
    /* background-color: #fdfdfd; */
    background-color: #e3e3e3;
    color: #000000;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
   
    /* Position the tooltip text - see examples below! */
    position: absolute;
    bottom: 113%;
    /* left: 0; */
    right: 0;
    /* transform: translate(-50%, 0); */
    z-index: 1;

    transition: all 0.4s ease;

  }

  .info-tooltip-media-users-readed .info-tooltip-media-users-readed-text::after {
    content: "";
    position: absolute;
    top: 100%;
    /* left: 15%; */
    right: 4%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: black transparent transparent transparent;
  }
  
  /* Show the tooltip text when you mouse over the tooltip container */
  .info-tooltip-media-users-readed:hover .info-tooltip-media-users-readed-text {
    visibility: visible;
  }

  /*  */




/* approve */
  .user-read-file-and-approved .info-tooltip-media-btn-approve {
    /* visibility: hidden; */
    visibility: visible;
    width: 277px;
    background-color: #fdfdfd;
    color: #000000;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
   
    /* Position the tooltip text - see examples below! */
    position: absolute;
    /* bottom: 89%; */
    /* left: 0; */

    top: 0;
    right: 105%;

    /* transform: translate(-50%, 0); */
    z-index: 1;

    transition: all 0.2s ease;

  }

  .user-read-file-and-approved .info-tooltip-media-btn-approve::after {
    /* content: "";
    position: absolute;
    top: 100%;
    left: 15%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: black transparent transparent transparent; */
    content: " ";
    position: absolute;
    top: 50%;
    left: 100%; /* To the right of the tooltip */
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent black;

  }
  
  /* Show the tooltip text when you mouse over the tooltip container */
  .user-read-file-and-approved:hover .info-tooltip-media-btn-approve {
    visibility: hidden;
  }


/*  */


.media-viewed-by-users-list .box-100 .big-fat-blue {
    margin-left: 0;
}





input.addFile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
  }

  a.submit-grey,
  .submit-grey,
  input.submit-grey {
      background: none;
      background-color: #999;
      border: none;
      color: #fff !important;
      width: 100%;
      margin: 10px 10px 10px 0;
      cursor: pointer;
      font-size: 14px;
      padding: 10px 15px;
      min-width: fit-content;
      border-radius: 3px;
      -webkit-appearance: none;
      text-align: center;
      text-shadow: none;
      font-weight: bold;
  }

body .submit.add-file {
    padding: 10px 30px !important;
}


/* table */
.file_upload_comment {
    max-width: 200px;
    /* overflow-y: scroll; */
    vertical-align: top;
}

.file_upload_comment .td-inner-div {
    display: flex;
    /* max-height: 50px; */
    height: 100px;
    overflow-y: scroll;
}

.filelist .folder a{
    color: #000;
}

th.file_settings {
    text-align: center;
}

.filelist td.file_settings {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.filelist td.file_settings a {
    color: #004679;
}
.filelist td.file_settings .btn {
    padding: 20px 20px !important;
}


#file-and-folder-list-filter .box-40 {
    margin-left: 0;
    padding-left: 0;
}

/* end */


.cboxCloneClose {
    background-color: rgba(0, 0, 0);
    z-index: 1000;
    position: absolute;
    color: #fff;
    width: 45px;
    height: 45px;
    top: -12.5px;
    opacity: 1;
    right: -12.5px;
    font-size: 0px;
    /* text-shadow: 1px 1px 3px #ffffff; */
    display: flex;
    align-items: center;
    justify-content: center;
}
.cboxCloneClose::before {
    visibility: visible;
    font-family: "Line Awesome Free";
    font-size: 30px;
    content: "\f057";
    color: #fff;
  }
  
  .cboxCloneClose:hover:before {
    opacity: .7;
  }
  .cboxCloneClose:hover {
    font-size: 28px;
    background-color: rgba(0, 0, 0);
  }
  






/************************************************/
/******* modal-work-project-small-icons *********/

.modal-work-project-small-icons-bg-layer {
    display: none;
    position: fixed;
    overflow-y: scroll;
    overflow-x: hidden;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.747);
    z-index: 2;
  }

.modal-work-project-small-icons {
    max-width: 100%;
    width: auto;
    padding: 1rem;
    height: auto;
    min-height: 12rem;
    min-width: 18rem;
    background-color: var(--white);
    position: absolute;
    top: 43%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 0.5rem;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 7px 14px rgba(48, 48, 48, 0.1), 0 5px 5px rgba(90, 90, 90, 0.1);
    margin: 0 0;
  }

  .show-modal-small {
    display: flex;
  }
  
  
  .modal-work-project-small-icons-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
  }
  
  .modal-work-project-small-icons-close i {
    color: var(--blue);
    font-size: 3rem;
    cursor: pointer;
  }

 .modal-work-project-small-btn-wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
 }


 .modal-work-project-small-btn-outer-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
 }


.modal-work-project-small-project-info {
     width: 100%;
     display: flex;
     flex-direction: column;
     align-items: flex-start;
     justify-content: flex-start;
     margin-bottom: 10px;
}

/*** end modal-work-project-small-icons **********/
/************************************************/


/* css help classes */

.show-scroll-to-side-info {
    display: none;
}

.map-view-wrapper {
    position: relative;
}

#job-info-show-media-wrapper {
    margin: 15px;
    padding: 10px 0;
}

#job-info-show-media-wrapper table tbody tr {
    justify-content: space-between;
}

#job-info-show-media-wrapper table tbody tr td a {
    display: flex;
    justify-content: center;
}



/* highlight */
.highlight-element-yellow {
    background-color: rgba(247, 255, 15, 0.6);
}



.flex-justify-content-start {
    justify-content: flex-start !important;
}


/*  */


/* table sorting css */
.table-col-sortable {
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
}

.table-col-sortable:hover {
    color: #dbdbdb;
}

.sort-active {
    background-color: rgba(171, 171, 171, 0.25);
}

.sort-active i {
    font-size: 20px;
}


/* info tooltip */
/* Tooltip text */
.info-tooltip-sort .info-tooltip-sort-text {
    visibility: hidden;
    width: 120px;
    background-color: #f1f1f1;
    color: #000000;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
   
    /* Position the tooltip text - see examples below! */
    position: absolute;
    bottom: 100%;
    left: 0;
    /* transform: translate(-50%, 0); */
    z-index: 1;

    transition: all 0.4s ease;

  }
  
  /* Show the tooltip text when you mouse over the tooltip container */
  .info-tooltip-sort:hover .info-tooltip-sort-text {
    visibility: visible;
  }
/*  */





/* new 2023-07-12 user relative contacts */
.user-relative-contact-wrapper {
    border: 1px solid #ccc;
    margin: 10px 0;
    padding: 10px;
}


.relative-contact-fields-row-wrapper.selected {
    border: 1px solid #f65d5d;
    border-radius: 5px;
}

/* pointer-events: none; */
/* .relative-contact-fields-row-wrapper {
    pointer-events: fill;
} */

/* .relative-contact-fields-row-wrapper:hover {
    
} */

/* .relative-contact-fields-row-wrapper .remove-contactperson {
    pointer-events: auto;
} */

/* .relative-contact-fields-row-wrapper .remove-contactperson:hover {
    border: 1px solid #f65d5d;
} */
/*  */


#user-relative-contactperson-list-filter {
    display: flex;
    width: 100%;
}

#user-relative-contactperson-list-filter .box-40 {
    margin-left: 0;
    padding-left: 0;
}

/* new 2023-08-09 */
.user-relatives-list-header-wrapper {
    display: flex;
    width: 100%;
    align-items: flex-start;
}


.user-relatives-list-header-wrapper a.btn {
    padding: 12px 12px !important;
    margin: 0 !important;
}


.user-relatives-list-header {
    display: flex;
    width: 100%;   
}

.user-relatives-list-header p {
    padding-left: 10px;
}

.user-relatives-list-outer-wrapper {
    display: flex;
    width: 100%;
}

.user-relatives-list-inner-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}


.user-relatives-list-inner-wrapper .inner-wrapper-row-wrapper {
    padding-bottom: 10px;
}

.user-relatives-list-inner-wrapper .contact-header {
    font-weight: 600;
}

.user-relatives-list-inner-wrapper .contact-name-header {
    font-weight: 500;
}
.user-relatives-list-inner-wrapper .contact-name {
    font-weight: normal;
}
.user-relatives-list-inner-wrapper .contact-phone-header {
    font-weight: 500;
}
.user-relatives-list-inner-wrapper .contact-phone {
    font-weight: normal;
}


/*  */






@media all and (max-width: 1200px){

    /* .job-dashboard-list .job-dashboard-list-filter-wrapper {
        display: flex;
        flex-direction: column;
        width: 100%;
    } */

    /* .job-dashboard-list .box-50,
    .job-dashboard-list .box-30{
        margin-left: 0;
        padding-left: 0;
    } */

    /* .job-dashboard-list .job-dashboard-list-filter-wrapper .search-box.box-50,
    .job-dashboard-list .job-dashboard-list-filter-wrapper .box-50,
    .job-dashboard-list .job-dashboard-list-filter-wrapper .box-75 {
        width: 100%;
    } */


    /* .job-dashboard-list .box-30 {
        width: 50%;
    } */


}



@media all and (max-width: 960px) {
    header .profile-menu {
        display: inline-block;
        color: #fff;
    }
    header .profile-menu-action {
        padding-right: 10px;
    }
    section .content {
        padding: 20px;
        background-color: #fff;
        /* float: left; */
        overflow: unset;
    }
    nav {
        display: none;
        width: 100%;
    }
    .mobile {
        display: inline-block;
    }
    .desktop,
    td.desktop,
    th.desktop {
        display: none;
    }
    a.app-menu:link,
    a.app-menu:visited {
        margin: 7px 0 0 0;
        color: #fff;
        float: left;
    }
    header .profile-menu-action {
        position: absolute;
        vertical-align: middle;
        right: 10px;
    }
    header .profile-menu-action .user-image {
        font-size: 35px;
    }
    header .profile-menu-action div {
        display: none;
    }
    header .profile-menu {
        display: none;
    }
    header .Usermenu {
        top: 65px;
    }
    header #logo img {
        width: 100px;
    }
    /* Article boxes */
    .article-box {
        width: calc(33.33% - 15px);
    }
    .section-title {
        max-width: 80%;
    }
    .section-update {
        max-width: 20%;
        text-align: right;
        font-size: 25px;
    }
    a.section-action-button:link,
    a.section-action-button:visited {
        padding: 5px;
    }
    table.responsive {
        margin-bottom: 0;
    }
    div.table-wrapper {
        overflow-x: auto;
    }
    table.responsive td,
    table.responsive th {
        position: relative;
        white-space: nowrap;
        overflow: hidden;
    }
    /* css help classes */
    .show-scroll-to-side-info {
        display: block;
    }
    .job-info-modal {
        min-width: 35rem;
        min-height: unset;
        padding: 2rem;
    }
    .big-fat-blue {
        font-size: 2rem;
    }
    .map-modal-close,
    .job-info-modal-close {
        top: 13px;
        right: 20px;
    }





    /* list job */
    #project-list-filter {
        width: 100%;
        display: flex;
        flex-direction: column;
    }


    .job-dashboard-list .box-40 {
        width: 100%;
        margin: 0;
        padding: 0;
        width: calc(100% - 0px);
    }

    .job-dashboard-list .job-dashboard-list-filter-wrapper .box-25 {
        padding: 0;
        margin: 0 10px 0 0;
    }
    .job-dashboard-list .job-dashboard-list-filter-wrapper .box-75 {
        padding: 0;
        margin: 0;
        width: calc(80% - 0px);
    }



    #user-relative-contactperson-list-filter {
        display: flex;
        width: 100%;
        flex-direction: column;
    }

    #user-relative-contactperson-list-filter .box-25 {
        margin-left: 0;
        padding-left: 0;
    }


    .filelist td.file_settings {
        display: table-cell;
    }


    .modal-work-project-small-icons {
        min-width: 25rem;
    }
    /* padding: 20px 30px !important; */
    .modal-work-project-small-icons .modal-work-project-small-btn-wrapper .btn{
        padding: 20px 30px !important;
    }

}

@media all and (max-width: 768px) {
    /* Article boxes */
    .article-box {
        width: calc(50% - 15px);
    }

  .job-manage-wrapper h1 {
      margin-left: 0;
      padding-left: 0;
  }
    .box-flex-row {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        /* flex-direction: row; */
        flex-direction: column;
    }



    .box-25-no-margin-top-botttom {
        width: 100%;
        padding: 0 20px 0 0;
        margin: 0;
    }


    .box-50 {
        width: 100%;
        padding: 0;
        margin: 0;
    }
    .box-50-no-margin-top-botttom {
        width: 100%;
        padding: 0;
        margin: 0;
    }
    .box-100 {
        width: 100%;
        padding: 0;
        margin: 0;
    }
    .action-btn-wrapper {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        margin: 20px 0;
    }
    .get-gps-geolocation,
    .pick-gps-geolocation {
        width: auto;
        margin: 15px;
        padding: 10px;
    }

    .get-gps-geolocation {
        margin: 10px 0 !important;
    }

    
    .box-media-list {
        align-items: flex-start;
        justify-content: space-between;
        flex-direction: column;
    }
    
    .box-media-list .btn.btn-red {
        margin-top: 10px !important;
    }

    .box-media-list-gps-info {
        padding-bottom: 10px;
    }


    body.body-touch .btn {
        /* margin: 0 !important; */
        margin: 10px 0 !important;
        padding: 8px 12px !important;
    }
    .btn.cboxElement {
        margin-top: 0px !important;
    }
    .action-btn-wrapper .btn {
        margin: 0 !important;
        padding: 0 !important;
    }
    input[type="date"] {
        width: 100%;
    }
    .job-info-modal {
        min-width: 28rem;
    }
    #job-info-show-wrapper .box-flex-row .box-50 {
        margin-bottom: 10px;
        padding: 4px 10px;
    }
    #job-info-show-media-wrapper {
        margin: 0 15px;
    }
    .box-flex-row .box-100 {
        margin-bottom: 10px;
        padding: 4px 10px;
    }
    .big-fat-blue {
        margin-left: 0px;
    }




    /* job-list */
    .project-list-filter-form {
        width: 100%;
        flex-direction: column;
    }

    .project-list-filter-form .box-25,
    .project-list-filter-form .box-30,
    .project-list-filter-form .box-50,
    .project-list-filter-form .box-75 {
        width: 100%;
    }


    .job-dashboard-list .job-dashboard-list-filter-wrapper .box-75 {
        width: calc(100% - 0px);
    }

    #file-and-folder-list-filter .box-40 {
        width: 100%;
        margin: 0;
        padding: 0;
    }

}

@media all and (max-width: 550px) {
    header .Usermenu {
        top: 65px;
    }
    header .profile-menu-action .user-image {
        font-size: 28px;
    }
    header .profile-menu-action div {
        display: block;
        top: 2px;
        position: relative;
        margin-right: 0;
    }
    header .profile-menu-action {
        margin: 18px 0;
    }
    .profile-menu-action .Usermenu__icon {
        width: 30px;
        height: 30px;
    }
    .Usermenu__name {
        display: none;
    }
    #modalcontent {
        min-width: 300px;
    }
    .job-info-modal {
        padding: 2rem;
    }
    .job-info-modal-content h2 {
        line-height: 2.2rem;
        font-size: 1.5rem;
    }
    .more-info-modal h2 {
        line-height: 2.2rem;
        font-size: 1.5rem;
    }
    .map-view-wrapper {
        padding: 0 !important;
    }
    .color-info-map-icons {
        flex-direction: column;
    }
    .job-info-modal {
        min-width: unset;
        width: 100%;
        padding: 1rem;
        transform: unset;
        top: unset;
        left: unset;
    }
    .map-modal-close,
    .job-info-modal-close {
        top: 16px;
        right: 18px;
    }



    .job-dashboard-list .job-dashboard-list-filter-wrapper .box-75 {
        width: calc(100% - 0px);
    }


    .info-tooltip-media-users-readed .info-tooltip-media-users-readed-text {
        left: 0;
        right: 0;
    }
    .info-tooltip-media-users-readed .info-tooltip-media-users-readed-text::after {
        left: 7%;
        right: unset;
    }


    .user-read-file-and-approved .info-tooltip-media-btn-approve::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 15%;
        /* right: 4%; */
        margin-left: -5px;
        border-width: 5px;
        border-style: solid;
        border-color: black transparent transparent transparent;
    }

    .user-read-file-and-approved .info-tooltip-media-btn-approve {
        visibility: visible;
        width: 240px;
        background-color: #fdfdfd;
        color: #000000;
        text-align: center;
        padding: 5px 0;
        border-radius: 6px;
        position: absolute;
        bottom: 107%;
        left: -4%;
        top: -44px;
        /* right: 105%; */
        /* transform: translate(-50%, 0); */
        z-index: 1;
        transition: all 0.2s ease;
    }


    #user-relative-contactperson-list-filter .box-25 {
        width: 100%;
    }
    #user-relative-contactperson-list-filter .box-40 {
        width: 100%;
        margin-bottom: 0;
        padding-bottom: 0;
    }


    #file-and-folder-list-filter .box-40 {
        width: 100%;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .input-wrapper {
        display: flex;
        flex-direction: column;
        width: 100%;
    }


    .modal-work-project-small-icons {
        min-width: 18rem;
    }

    .modal-work-project-small-icons .modal-work-project-small-btn-wrapper .btn{
        padding: 16px 20px !important;
    }

}

@media all and (max-width: 400px) {
    .Login {
        width: unset;
    }
}

@media screen and (max-width: 800px) {
    .responsive_test {
        min-width: 900px;
    }
    .td-absolute {
        position: absolute;
        width: 200px;
        margin-top: -13px;
        height: 26px;
        display: flex;
        align-items: center;
        border-right: 1px solid #cccccc;
        background-color: #ffffff;
        font-size: 12px;
        left: 20px;
        line-height: 12px;
        padding-left: 4px;
    }
}


/* Responsive */

@media screen and (max-width: 800px) {
    .Header {
        z-index: 2000;
    }
    .Mainmenu__mobilebutton {
        display: block;
    }
    .Mainmenu__mobilebutton.open div:nth-child(1) {
        transform: rotate(45deg);
        top: 20px;
    }
    .Mainmenu__mobilebutton.open div:nth-child(2) {
        opacity: 0;
    }
    .Mainmenu__mobilebutton.open div:nth-child(3) {
        transform: rotate(130deg);
        top: 20px;
    }
}

@media screen and (max-width: 2000px) {
    .box-search-holder {
        width: 40%;
    }
    .user-header-spacer {
        display: none;
    }
}

@media screen and (max-width: 1080px) {
    .user-header {
        flex-direction: column;
    }
    .box25 {
        width: 100%;
        min-height: 80px;
    }
}

.flex-wrapper {
    float: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.flex-100 {
    width: 100%;
    margin: 0 20px 20px 0;
    width: calc(100% - 20px);
}

.flex-66 {
    width: 66.7%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.flex-50 {
    width: 48%;
    width: calc(50% - 20px);
    margin: 0 20px 20px 0;
}

.flex-33 {
    width: 33.3%;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
}

.flex-25 {
    width: 25%;
    padding-left: 20px;
    display: flex;
    flex-wrap: wrap;
}

.flex-wrapper .content {
    float: none;
}

@media screen and (max-width: 1300px) {
    .flex-66 {
        width: 100%;
    }
    .flex-50 {
        width: 100%;
    }
    .flex-33 {
        width: 100%;
        padding-left: 0;
    }
    .flex-25 {
        width: 50%;
        padding-left: 20px;
        display: flex;
        flex-wrap: wrap;
    }
    .flex-wrapper .content {
        float: none;
    }
    .btn-big,
    a.btn-big:link,
    a.btn-big:visited {
        width: 33.3%;
        width: calc(33.3% - 20px);
    }
}

/* @media screen and (max-width: 900px) {
  .box-25-no-margin-top-botttom {
      width: calc(50% - 30px);
      padding: 0 20px 0 0;
      margin: 0;
  }
} */

@media screen and (max-width: 700px) {
    .btn-big,
    a.btn-big:link,
    a.btn-big:visited {
        width: 50%;
        width: calc(50% - 20px);
    }

}

@media screen and (max-width: 450px) {
    .flex-25 {
        width: 100%;
        padding-left: 20px;
        display: flex;
        flex-wrap: wrap;
    }
    .btn-big,
    a.btn-big:link,
    a.btn-big:visited {
        width: 100%;
        width: calc(100% - 20px);
    }
}