﻿/* 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. */
body {
    font-size: 14px;
    color: rgba(67, 73, 85);
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
}

a {text-decoration:none;}
a:hover {text-decoration:underline;}
a:before,a:after { text-decoration:underline;}
a:before,a:after,
a:hover:before,a:hover:after {text-decoration:none;}


/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Carousel */
.carousel-caption p {
    font-size: 20px;
    line-height: 1.4;
}

/* Make .svg files in the carousel display properly in older browsers */
.carousel-inner .item img[src$=".svg"] {
    width: 100%;
}

/* QR code generator */
#qrCode {
    margin: 15px;
}

.icon-bar {
    background-color: white;
}

.warning-msg {
    color: #d0021b;
}

.error-msg {
    color: #d0021b;
    font-size: 12px;
    visibility: hidden;
}

.hide-me {
    display: none;
}

/* Hide/rearrange for smaller screens */
@media screen and (max-width: 767px) {
    /* Hide captions */
    .carousel-caption {
        display: none;
    }
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    font-size: 12px;
    font-weight: 300;
    font-style: italic;
    font-stretch: normal;
    line-height: 1.67;
    letter-spacing: normal;
    color: #434955;
    opacity: 0.5;
}
::-moz-placeholder { /* Firefox 19+ */
    font-size: 12px;
    font-weight: 300;
    font-style: italic;
    font-stretch: normal;
    line-height: 1.67;
    letter-spacing: normal;
    color: #434955;
}
:-ms-input-placeholder { /* IE 10+ */
    font-size: 12px;
    font-weight: 300;
    font-style: italic;
    font-stretch: normal;
    line-height: 1.67;
    letter-spacing: normal;
    color: #434955;
}
:-moz-placeholder { /* Firefox 18- */
    font-size: 12px;
    font-weight: 300;
    font-style: italic;
    font-stretch: normal;
    line-height: 1.67;
    letter-spacing: normal;
    color: #434955;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}

input {
    background-color: #fff;
    border: 1px solid rgb(162, 160, 175);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #434955;
    min-height: 30px;
    padding: 5px 14px;
}

.input-login {
    width: 267px;
    margin-bottom: 9px;    
}

.input-modal {
    width: 100%;
}

.input-modal-holder {
    width: 320px;
    margin: auto;
}

.input-modal-holder-lg {
    width: 505px;
    margin: auto;
}

.input-modal-holder-lg > hr {
    margin-top: 50px;
    color: #979797;
    height: 2px;
}

.modal-label {
    width: 100%;
}

.input-search {
    width: 292px;
    background: white url(/images/icon-search.svg) no-repeat right 10px center;
}

.simple-input {
    margin-top: 12px;
}

.btn {
    font-size: 12px;
}

.custom-btn {
    border-radius: 4px;
    padding: 8px 22px;
    min-width: 134px;
    font-size: 14px;
    font-weight: 600;
}

.btn-primary {
    background-color: rgb(53, 152, 232);
    color: white;
    border: 1px solid rgb(53, 152, 232);
}

.btn-secondary {
    background-color: white;
    color: rgb(67, 73, 85);
    border: 1px solid rgb(162, 160, 175);
}

.btn-create {
    background-color: rgb(53, 152, 232);
    border: 1px solid rgb(53, 152, 232);
    color: white;
    border-radius: 4px;
    padding: 8px 45px;
    min-width: 134px;
    font-size: 14px;
    font-weight: 600;
    float: right;
    /* margin: 40px 14px 22px 14px; */
}

.text-center {
    text-align: center;
    padding: 9px;
}

/*Modal styles*/

.vertical-alignment-helper {
    display:table;
    height: 100%;
    width: 100%;
}
.vertical-align-center {
    /* To center vertically */
    display: table-cell;
    vertical-align: middle;
}
.modal-content {
    /* Bootstrap sets the size of the modal in the modal-dialog class, we need to inherit it */
    width:inherit;
    height:inherit;
    /* To center horizontally */
    margin: 0 auto;
}

.open-modal {
    cursor: pointer;
}

.modal-content-lg {
    width: 615px;
}

.modal-dialog {
    width: 460px;
}

.modal-header {
    padding: 20px;
    text-align: center;
    color: white;
    background-color: rgb(4, 78, 139);
    position: relative;
    border: none;
}

    .modal-header h5 {
        font-size: 18px;
        font-weight: 600;
    }

    .modal-header .close {
        width: 12px;
        height: 12px;
        position: absolute;
        top: 28px;
        right: 28px;
        opacity: 1;
    }

.modal-body {
    font-size: 18px;
    font-weight: 300;
    padding: 35px;
    color: rgb(67, 73, 85);
}

    .modal-body p {
        text-align: center;
    }

    .modal-body form {
        padding: 0 30px;
    }

.modal-footer {
    display: flex;
    justify-content: center;
    padding: 14px;
    background-color: #f5f6f6;
    border: none;
}

    .modal-footer .custom-btn {
        margin: 0 12px;
    }

.login-page-content {
    width: 100%;
    min-height: 100vh;
    font-size: 12px;
    line-height: 20px;
    color: white;
    background-image: linear-gradient(to right, rgb(53, 152, 232), rgb(67,116,208));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column-reverse;
}

.page-content {
    background-color: #f9f9f9;
    width: 100%;
    min-height: 100vh;
    padding: 130px 70px;
}

/*Header*/

.navbar {
    background-color: #044e8b;
    width: 100%;
    padding: 24px 40px 0 40px;
    font-size: 18px;
    color: white;
    border: none;
}

.navbar a {
    color: white;
}

.active-menu {
    font-weight: 600;
    border-bottom: 5px solid #b5deff;
}

.nav > li {
    position: relative;
    display: block;
    padding: 0 20px 13px 20px;
}

.nav > li > a:hover {
    background-color: #044e8b;
    cursor: pointer;
}

.nav > li > a:focus {
    background-color: #044e8b;
}

.logo-header {
    width: 134px;
    height: 48px;
    margin-right: 70px;
    margin-bottom: 20px;
}

.user-menu {
    float: right;
    display: flex;
    flex-direction: column;
    text-align: right;
    font-size: 14px;
    font-weight: 600;
}

.log-out {
    color: #b5deff;
    cursor: pointer;
}

/**/

label {
    margin-top: 12px;
    font-size: 12px;
    line-height: 20px;
    font-weight: 300;
    width: 100%;
    opacity: 0.5;
}

.login-btn {
    border: none;
    border-radius: 4px;
    background-color: rgb(4, 78, 139);
    color: white;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 22px;
    margin-top: 44px;
    width: 100%;
    text-align: center;
    display: block;
}

.login-holder > a:link {
    color: white;
}
.login-holder > a:visited {
    color: white;
}
.login-holder > a:hover {
    color: white;
}

td > a:link {
    color: #3598e8;
    text-decoration:none;
}

td > a:visited {
    color: #3598e8;
    text-decoration:none;
}

td > a:hover {
    color: #3598e8;
    text-decoration:none;
}

.btn-create:link {
    color: white;
    text-decoration:none;
}

.btn-create:visited {
    color: white;
    text-decoration:none;
}

.btn-create:hover {
    color: white;
    text-decoration:none;
}

.login-btn:hover {
    color: white !important;
    text-decoration: none;
}

.login-holder {
    width: 270px;
    height: auto;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    overflow: hidden;
}

.login-holder img {
    margin-bottom: 44px;
}

.login-holder h1 {
    color: white;
    text-align: center;
    margin: 0;
    font-weight: 400;
}

.table-actions-holder {
    width: 100%;
    height: 83px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.table-actions-holder-left {
    width: 100%;
    height: 83px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.table-actions-holder-right {
    width: 100%;
    height: 83px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.search-table {
    width: 100%;
    min-height: 200px;
    background-color: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 13px rgba(0,0,0,.075);
}

.search-table .search-table-header{
    background-color: rgba(0, 0, 0, 0.17);
    height: 58px;
    overflow: hidden;
}

.search-table .search-table-row{
    height: 50px;
    border-top: 1px solid #E3E3E3;
    overflow: hidden;
}

.search-table .search-table-row:hover{
    background-color: rgba(216, 216, 216, 0.12);
}

.dropdown {
    position: relative;
    display: inline-block;
    font-size: 12px;
}

.dropdown-full {
    width: 100%;
}

.margin-left-35 {
    margin-left: 35px;
}

.dropdown-menu {
    padding: 4px 14px;
    min-width: 100%;
    max-height: 150px;
    font-size: 12px;    
    overflow: auto;
}

.dropdown-menu a{
    display: block;
    margin: 4px 0;
    font-weight: 600;
    text-decoration: none;
    color: #434955;
}

.dropdown-toggle {
    text-align: left;
    background: white url(/images/arrow-down.svg) no-repeat right 10px center;
    font-weight: 600;
}

.dropdown-toggle::after {
        display: inline-block;
        margin-left: 0.255em;
        vertical-align: 0.255em;
        border-top: 0.3em solid;
        border-right: 0.3em solid transparent;
        border-bottom: 0;
        border-left: 0.3em solid transparent;
        content:none !important;
 }

.dropdown-sm {
    width: 185px;
}

.dropdown-lg {
    width: 240px;
}

.dropdown-xlg {
    width: 310px;
}

.dropdown-content {
    display: none;
    position: absolute;
    min-width: 160px;
    z-index: 1;
    border-radius: 4px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
    background-color: #ffffff;
    padding: 16px 13px 19px 13px;
}

ul, li {
    list-style-type: none;
    margin: 0;
    cursor: pointer;
}

.option-selected {
    font-weight: 600;
}

.userid-column, .email-column{
    cursor: pointer;
}

.list-table {
    width: 100%;
    background-color: white;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    overflow: hidden;
    box-shadow: 0 2px 13px rgba(0,0,0,.075);
    margin-top: 22px;
}

.list-table > thead {
    background-color: rgba(0, 0, 0, 0.17);
    height: 58px;
    overflow: hidden;
}

.list-table > thead tr th{
    font-weight: 800;
    color: #434955;
}

.list-table > tbody tr {
    height: 50px;
    border-top: 1px solid #E3E3E3;
    color: rgba(67, 73, 85, 0.75);
}

.column-sm {
    padding: 26px 14px 13px 14px;
    max-width: 100px;
    word-wrap:break-word;
}

.column-md {
    padding: 26px 40px 13px 40px;
    max-width: 150px;
    word-wrap:break-word;
}

.column-lg {
    padding: 26px 40px 13px 40px;
    max-width: 300px;
    word-wrap:break-word;
}

.column-80 {
    padding: 26px 40px 13px 40px;
    max-width: 300px;
    width: 85%;
    word-wrap:break-word;
}

.column-50 {
    padding: 26px 40px 13px 40px;
    max-width: 300px;
    width: 50%;
    word-wrap:break-word;
}

.column-30 {
    padding: 26px 40px 13px 40px;
    max-width: 300px;
    width: 35%;
    word-wrap:break-word;
}

.search-table-row span {
    color: rgba(67, 73, 85, 0.75);
    padding: 13px 61px;
}

.isClicable {
    cursor: pointer;
    color: #3598e8;
}

.active {
    color: #7ED321;
}

.locked {
    color: #D0021B;
}

h1 {
    font-family: 'Open Sans', sans-serif;
    font-size: 24px;
    color: #434955;
}

h2 {
    height: 19px;
    font-size: 14px;
    color: #434955;
}

.dropbtn {
    min-width: 188px;
    background: white url(/images/arrow-down.svg) no-repeat right 10px center;
    border: 0.5px solid #434955;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #434955;
    min-height: 30px;
    padding: 5px 14px;
    cursor: pointer;
    text-align: left;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-holder > .dropdown {
    margin-left: 0;
}

.dropdown-content {
    display: none;
    position: absolute;
    min-width: 160px;
    z-index: 1;
    border-radius: 4px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
    background-color: #ffffff;
    padding: 16px 13px 19px 13px;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.show {display: block;}

/*toastr*/
.toast {
    max-width: 680px;
    margin-bottom: 60px !important;
    height: 75px;
    background-color: white !important;
    color: #434955 !important;
}

#toast-container > div {
    padding: 15px 15px 15px 55px !important;
}

.toast-title {
    margin-bottom: 3px;
}

#toast-container>.toast-success{
    background-image:url(/images/toastr-success.svg) !important;
    border-left: 10px solid #61A714 !important;
}

#toast-container>.toast-error{
    background-image:url(/images/toastr-error.svg) !important;
    border-left: 10px solid #B72936 !important;
}

.loader {
    display: flex;
    justify-content: center;
}

    .loader img {
        width: 200px;
        height: 200px;
        margin: 20px 0;
    }

textarea {
    background-color: #fff;
    border: solid 0.5px #434955;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #434955;
    min-height: 60px;
    padding: 5px 14px;
    resize: none;
}

.tags-holder {
    font-size: 12px;
    color: #434955;
}

.tags {
    display: inline-block;
    cursor: pointer;
    color: #000000;
    font-size: 10px;
    border-radius: 2px;
    background-color: #d8d8d8;
    padding: 3px 9px;
    margin: 0 4px 4px 0;
}


/*Radio button*/

/* The container */
.radiobtn-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 12px;
    color: #434955;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    opacity: 1;
}
  
  /* Hide the browser's default radio button */
.radiobtn-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    border-radius: 50%;
    border: 1px solid #979797;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.radiobtn-container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.radiobtn-container .checkmark:after {
    top: 4px;
    left: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #3598E8;
}

.arrow-down {
    width: 0; 
    height: 0; 
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #434955;
    vertical-align: text-top;
    display: inline-block;
    margin: 6px 5px;
}

.arrow-up {
    width: 0; 
    height: 0; 
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #434955;
    display: inline-block;
    margin: 2px 5px;
}

.version-number {
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.edit-notification-warning {
    margin-top: 35px;
    display: none;
}

.submit-footer {
    width: 100%;
    min-height: 62px;
    padding: 22px 164px 22px 164px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: white;
    box-shadow: 6px 11px 18px 0 rgba(0, 0, 0, 0.5);
}

.submit-footer > button {
    margin-left: 24px;
}

.open-task-preview {
    width: 524px;
    height: 200px;
}

.closed-task-preview {
    width: 512px;
    height: 136px;
}

@media screen and (max-width: 1420px) {
    .open-task-preview {
        width: 367px;
        height: 140px;
    }
    
    .closed-task-preview {
        width: 358px;
        height: 95px;
    }
}

@media screen and (max-width: 1255px) {
    .open-task-preview {
        display: none;
    }
    
    .closed-task-preview {
        display: none;
    }
}

.input-date {
    background: white url(/images/calendar.svg) no-repeat right 10px center;
    cursor: pointer;
}

.input-info {
    margin-top: 10px;
    opacity: 0.57;
    font-size: 12px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.67;
    letter-spacing: normal;
    color: #434955;
}

.input-cell-holder {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
}

.submit-task-form input, textarea {
    width: 310px;
    margin-right: 54px;
}

.submit-task-form textarea {
    width: 310px;
    margin-right: 54px;
    border: 1px solid rgb(162, 160, 175);
}

.submit-task-form .dropdown {
    margin-right: 54px;
}

.submit-task-form .dropdown-icon {
    margin-right: 30px;
}

.general-settings {
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
}

.open-task-behaviour {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.left-input-holder {
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
    max-width: 730px;
}

.one-column-holder {
    max-width: 310px;
}

.task-radio-holder {
    width: 100%;
    display: flex;
    margin-top: 40px;
}

.add-icon {
    color: #3598e8;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.dropdown-task-icon {
    margin-right: 4px;
    height: 15px;
}

.dismiss-day-cell {
    background-color: #fff;
    border: 1px solid rgb(162, 160, 175);
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.change-value-button {
    width: 65px;
    height: 30px;
    font-size: 16px;
    font-weight: 600;
    color: #434955;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.value-holder {
    width: 100%;
    height: 30px;
    font-size: 12px;
    font-weight: 600;
    border-left: 1px solid rgb(162, 160, 175);
    border-right: 1px solid rgb(162, 160, 175);
    display: flex;
    justify-content: center;
    align-items: center;
}

.new-icon-holder {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.new-icon-preview {
    width: 40px;
    height: 40px;
    display: flex;
    visibility: hidden;
    align-items: center;
    border: solid 1px #979797;
    cursor: pointer;
    overflow: hidden;
    position: relative;

}

.image-icon-preview {
    position: absolute;
    width: auto;
    height: 100%;
}

.disabled-field {
    opacity: 0.3 !important;
    pointer-events:none;
}