/* Обычный */
@font-face {
	font-family: 'Roboto-Thin'; 
	src: url(/fonts/Roboto-Thin.ttf); 
}
 
/* Жирный */
@font-face {
	font-family: 'Roboto-Bold'; 
	src: url(/fonts/Roboto-Bold.ttf); 
}

* {
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
    color: #453c2b;
    outline: none;
}



body {
    background-image: url(../images/background.jpg);
    background-repeat: no-repeat;
    overflow: hidden;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}


main{
    display: flex;
    flex-direction: row;
    height: 90vh;
}

#content-container {
    display: flex;
    flex-direction: column;
    flex: 0 1 100%;
    margin-left: 5px;
    padding: 1rem;
    background: #ffffffa3;
}

#header {
  height: 80px;
  background: white;
  margin: 5px 0;
}


#menu-current-date{
    border-radius: 5px;
    border: none;
    padding: 5px;
    font-size: 16px;
    outline: none;
    box-shadow: 0px 2px 5px rgb(0 0 0 / 50%);
}
#notice {
  display: flex;
  height: 50px;
  /*background: #6ddb87;*/
  background: #453c2b;
  margin-bottom: 5px;
  padding: 5px;
  align-items: center;
  border: 2px dotted #ffdea1;
}


#notice-text{
    width: 100%;
    text-align: center;
    color: #453c2b;
    font-size: 20px;
    margin: 30px 0;
}

#sidebar-left {
    display: flex; 
    flex-direction: column;
    background: #ffffffa3;
}

#sidebar-right {
    display: flex;
    margin-left: 5px;
    flex-direction: column;
    width: 500px;
    background: #ffffffa3;
}

#wrapper {
    width: 1280px;
    margin: 0 auto;
}

.content-calendar{
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 10px;
    border-top: 1px solid #453c2b94;
    border-bottom: 1px solid #453c2b94;
}

.header-container{
    display: flex;
    height: inherit;
}
.header-col-left{
    width: 15%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-col-center{
    width: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.header-col-center *{
    font-size: 30px;
    font-weight: bold;
}
.header-col-right{
    width: 15%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header-col-right>div{
    margin-right: 10px;
}

.header-title-2{
    font-family: 'Roboto-Thin', sans-serif;
}

.content-calendar-item{
    display: flex;
    flex-direction: row;
    background: #453c2b;
    margin: 2px;
    align-items: center;
    border: none;
}



.content-calendar-item:hover {
    background: #ffdea1;
    cursor: pointer;    
}

.content-calendar-item:hover *{
    color: #453c2b;    
}

.content-calendar-item-month-day{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-calendar-item-month-day *{
    display: flex;
    flex-direction: column;  
    font-size: 12px;
    color: white;
    text-align: center;
    padding-right: 5px;
}

.content-calendar-item-week-day {
    padding-right: 5px;
    font-size: 26px;
    font-weight: bold;
    color: white;
    display: flex;
    align-items: center;
}

.content-calendar-item .content-calendar-item-prev, .content-calendar-item .content-calendar-item-next{
    font-size: 32px;
    color: white;
    padding: 0 10px;
}
.content-calendar-item:hover *{
  color: #453c2b;  
}


.content-main{
    margin-top: 30px;
    margin-left: -20px;
    overflow-y: auto;
    padding-bottom: 6px;
}

.content-main-category-block{
    margin-right: 20px;
    padding: 4px;
}

.content-main-category-name{
    text-align: center;
    width: 200px;
    border: none;
    outline: none;
    font-size: 20px;
    font-weight: bold;
    padding: 5px 30px;
    color: white;
    background-color: #453c2b;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
}

.content-main-product-block{
    display: flex;
    flex-direction: column;
    margin-top: 15px;
    margin-bottom: 5px;
    margin-left: 20px;
    border-radius: 10px;
    width: 100%;
    background: white;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
}

.content-main-product-check-block{    
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-main-product-cost{
    font-size: 48px!important;
    width: auto!important;
}

.content-main-product-cost-block{    
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-main-product-cost:after{    	
    content: "\20BD";
}

.content-main-product-description{
    font-size: 10px!important;
    width: auto!important;
}

.content-main-product-name{
    font-size: 24px!important;
    width: auto!important;
}



.content-main-product-row{
    display: flex;
    margin-top: 2px;
}

.content-main-product-row div{
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    padding: 3px;
}

.content-main-product-row:not(:first-child) div{
    width: 20%;   

}

.content-main-product-row:nth-child(2) div{
    background: #aaaaaa;
}

.content-main-product-row:nth-child(3) div{
    background: #dedede;
}

.content-main-product-row:first-child div:first-child{
    width: 20%;
}
.content-main-product-row:first-child div:nth-child(2){
    width: 40%;
}
.content-main-product-row:first-child div:nth-child(3){
    width: 20%;
}
.content-main-product-row:first-child div:last-child{
    width: 20%;
}



.content-main-product-row:last-child div:not(:first-child){
    margin-left: 2px;
}

.content-main-product-row:last-child div:first-child{
    border-bottom-left-radius: 10px;
}

.content-main-product-row:last-child div:last-child{
    border-bottom-right-radius: 10px;
}

.content-title{
    font-size: 30px;
    font-weight: bold;
    text-align: center;
}

.div-body{
    display: flex;
    flex-direction: column;
    background: white;
    margin: 10px 30px 0 30px;
    padding: 5px;
    border-radius: 10px;
    box-shadow: 0px 2px 5px rgb(0 0 0 / 50%);
}

.div-table-cell{
    display: flex;
}

.div-table-cell .cell{
    width: inherit;
    padding: 5px;
    display: flex;
    align-items: center;

}
.div-table-cell:not(:first-child) .cell{

    align-items: center;
    justify-content: center;
    text-align: center;
}
.div-table-row:not(:last-child) .div-table-cell .cell{
    border-bottom: 1px solid #e1e1e1;
}

.div-table-cell input[type="text"], .div-row-add-item input[type="text"]{
    
    width: calc(100% - 10px);
    font-size: 12px;
    margin: 5px;
    outline: none;
    border: none;
    border-radius: 5px;
    padding: 5px;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.5);
}

.div-table-cell input[type="image"], .div-row-add-item input[type="image"]{
    margin: 5px;
    outline: none;
    border: none;
    border-radius: 5px;
    padding: 2px;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.5);
}

.div-table-cell input[type="number"], .div-row-add-item input[type="number"]{
    width: calc(100% - 10px);
    text-align: center;
    font-size: 12px;
    margin: 5px;
    outline: none;
    border: none;
    border-radius: 5px;
    padding: 2px;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.5);
}

.div-table-cell input[type="button"]
{
    width: 100%;
    margin: 5px;
    padding: 5px;
    border-radius: 5px;
    background-color: #453c2b;
    outline: none;
    border: none;
    color: white;
    box-shadow: 0px 0px 5px rgb(0 0 0 / 30%);
}
.div-table-cell input[type="button"]:hover{
    color: #453c2b;
    background-color: #ffdea1;
    cursor: pointer;
}

.div-table-cell .cell input[type="button"]{
    height: 24px;
        color: #453c2b;
    border-radius: 10px;
    font-weight: bold;
    font-size: 16px;
    outline: none;
    border: none;
    background: #6ddb87;
    width: 100%;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
}



.div-table-cell .cell input[type="button"]:hover{
    color: white;
    background: #453c2b;
    cursor: pointer;
}

.div-table-cell select, .div-row-add-item select{
    font-size: 12px;
    width: inherit;
    margin: 5px;
    outline: none;
    border: none;
    border-radius: 5px;
    padding: 5px;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.5);
    /*border: 1px solid;*/
}

.div-table-cell textarea, .div-row-add-item textarea{
    resize: none;
    width: inherit;
    font-size: 12px;
    margin: 5px;
    outline: none;
    border: none;
    border-radius: 5px;
    padding: 5px;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.5);
    /*border: 1px solid;*/
}


.div-table-row{
    display: flex;
}


/*+++HISTORY*/

#history-date-from
{
    border-radius: 5px;
    margin: 5px;
    border: none;
    padding: 5px;
    font-size: 16px;
    outline: none;
    margin-right: 10px;
    box-shadow: 0px 2px 5px rgb(0 0 0 / 50%);
}

#history-date-to
{
    border-radius: 5px;
    margin: 5px;
    border: none;
    padding: 5px;
    font-size: 16px;
    outline: none;
    margin-left: 10px;
    box-shadow: 0px 2px 5px rgb(0 0 0 / 50%);
}

.div-table-row-history{
    display: flex;
    /*padding: 2px;*/
    
}

.div-table-column-history{
    display: flex;
    flex-direction: column;
}

.div-table-column-history:first-child{
    display: flex;
    align-items: center;
}

.div-table-column-history:last-child{
    display: flex;
    align-items: center;
}

.div-table-cell-history{
    justify-content: center;
    display: flex;
    padding: 2px;
    height: 100%;
    align-items: center;
}
.div-table-row-history .just-left{
    justify-content: flex-start;
}



.div-table-row-history:not(:last-child){
    border-bottom: 1px solid #e1e1e1;
}
.div-body > .div-table-row-history:not(:last-child)
{
    border-bottom: 1px solid #000000;
}



/*----HISTORY*/

.div-row-add{
    display: flex;
    flex-direction: row;
    background: white;
    border-radius: 10px;
    margin-top: 20px;
    margin-left: 10px;
    margin-right: 30px;
    padding: 5px;
    box-shadow: 0px 2px 5px rgb(0 0 0 / 50%);
}

.div-row-add-item{
    display: flex;
}

.div-row-add-item input[type="text"]{
    width: calc(100% - 10px);
    margin: 5px;
    outline: none;
    border: none;
    border-radius: 5px;
    padding: 5px;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.5);
    /*border: 1px solid;*/
}

.div-row-add-item input[type="image"]{
    margin: 5px;    
    outline: none;
    border: none;
    border-radius: 5px;
    padding: 2px;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.5);
}


.div-row-filter{
    display: flex;
    flex-direction: row;
    background: white;
    border-radius: 10px;
    margin-top: 40px;
    margin-bottom: -20px;
    margin-left: 10px;
    margin-right: 30px;
    padding: 5px;
    align-items: center;
    box-shadow: 0px 2px 5px rgb(0 0 0 / 50%);
}

.div-row-filter select {
    font-size: 12px;
    width: inherit;
    margin: 5px;
    outline: none;
    border: none;
    border-radius: 5px;
    padding: 5px;
    box-shadow: 0px 0px 2px rgb(0 0 0 / 50%);
}

.div-row-filter-title{
    padding: 5px;
}

.div-row-heading{
    display: flex;
    flex-direction: row;
    background: white;
    border-radius: 10px;
    margin-top: 20px;
    margin-bottom: -20px;
    margin-left: 10px;
    margin-right: 30px;
    padding: 5px;
    box-shadow: 0px 2px 5px rgb(0 0 0 / 50%);
}

.div-row-head{
    /*border: 1px solid black;*/
    font-size: 14px;
    font-weight: bold;
    height: 30px;
    align-items: center;
    display: flex;
    justify-content: center;
}


.sidebar-right-buy{
    padding: 4px;
}

.sidebar-right-buy input[type="button"]{
    height: 30px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 18px;
    outline: none;
    border: none;
    background: #6ddb87;
    width: 100%;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
}

.sidebar-right-buy input[type="button"]:hover{
    color: white;
    background: #453c2b;
    cursor: pointer;
}

.sidebar-right-cancel{
    padding: 4px;
}

.sidebar-right-cancel input[type="button"]{
    height: 30px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 18px;
    outline: none;
    border: none;
    background: #ff695a;
    width: 100%;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
}

.sidebar-right-cancel input[type="button"]:hover{
    color: white;
    background: #453c2b;
    cursor: pointer;
}



.sidebar-left-item {
    margin-bottom: 10px;
    margin-right: 45px;
}
.sidebar-left-title{
    margin-top: 15px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 5px;
}
.sidebar-left-item input[type="button"] {
    text-align: left;
    width: 100%;
    border: none;
    outline: none;
    font-size: 14px;
    font-weight: bold;
    padding: 5px 30px;
    color: white;
    background-color: #453c2b;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
}

.sidebar-left-item input[type="button"]:hover {
    color: #453c2b;
    background-color: #ffdea1;
    cursor: pointer;
}

.sidebar-right-cart-item{
    display: flex;
    margin-top: 5px;
    text-align: left;
    width: 100%;
    border: none;
    outline: none;
    font-size: 14px;
    font-weight: bold;
    padding: 5px 10px;
    color: white;
    background-color: #453c2b;
    border-radius: 10px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
}

.sidebar-right-cart-list{
    height: 350px;
    overflow-y: auto;
    padding: 4px;
}

.sidebar-right-comment-block{
    margin-top: 50px;
    bottom: 0;
    margin-bottom: 10px;
}

.sidebar-right-comment-textarea textarea{
    width: 100%;
    font-size: 12px;
    max-width: 1421px;
    height: 60px;
    color: white;
    height: 120px;
    resize: none;
    outline: none;
    padding: 5px;
    border: none;
    border-radius: 10px;
    background: #453c2b;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
}

.sidebar-right-comment-title{
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
}

.sidebar-right-container{
    margin-top: 7px;
    padding: 10px;
    position: relative;
    height: 100%;
}

.sidebar-right-title{
    margin-top: 5px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 16px;
}

.sidebar-right-sum{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    font-weight: bold;
    height: 46px;
    margin-top: 11px;
    margin-bottom: 10px;
    border-top: 1px solid #453c2b94;
    border-bottom: 1px solid #453c2b94;
}

.sidebar-right-sum:after{    	
    content: "\20BD";
}


.sidebar-right-cart-item-delete{
   text-align: center;
    right: 10px;
    width: 16px;
    height: 16px;
    position: absolute;
    border: none;
    border-radius: 16px;
    background-color: #ff6565;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    cursor: pointer;
    outline: none;

}

.sidebar-right-cart-item-block{
    display: flex;
    align-items: center;
}

.sidebar-right-cart-item-name{
    display: flex;
    align-items: center;
    color:white;
    width: 70%;
}

.sidebar-right-cart-item-minus input{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    background: #ffdea1;
    width: 26px;
    height: 26px;
    border: none;
    border-radius: 5px;
    font-size: 22px;
    font-weight: bold;
    justify-content: center;
    cursor: pointer;
}

.sidebar-right-cart-item-amount {
    display: flex;
    flex-direction: column;
    font-size: 18px;
    justify-content: center;
    align-items: center;
    color:white;
    padding: 5px;
    width: 24px;
    height: 24px;
}

.sidebar-right-cart-item-plus input{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    background: #ffdea1;
    width: 26px;
    height: 26px;
    border: none;
    border-radius: 5px;
    font-size: 22px;
    font-weight: bold;
    justify-content: center;
    cursor: pointer;
}

.sidebar-right-date{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    height: 44px;
    margin-top: 11px;
    margin-bottom: 10px;
    border-top: 1px solid #453c2b94;
    border-bottom: 1px solid #453c2b94;
}

.sidebar-right-menu-item{
    display: flex;
    margin-top: 5px;
    text-align: left;
    width: 100%;
    border: none;
    outline: none;
    font-size: 14px;
    font-weight: bold;
    padding: 5px 10px;
    color: white;
    background-color: #453c2b;
    border-radius: 10px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
}

.sidebar-right-menu-item-block{
    display: flex;
    align-items: center;
}

.sidebar-right-menu-item-del{
    color: #d81c1c;
    cursor: pointer;
}

.sidebar-right-menu-item-name{
    display: flex;
    align-items: center;
    color:white;
    width: 230px;
}

.sidebar-right-public{
    
        padding: 12px 4px 4px ;
}



.sidebar-right-public input[type="button"]{
    height: 30px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 18px;
    outline: none;
    border: none;
    background: #6ddb87;
    width: 100%;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
}

.sidebar-right-public input[type="button"]:hover{
    color: white;
    background: #453c2b;
    cursor: pointer;
}

.sidebar-right-public-cancel{
    padding: 4px;
}

.sidebar-right-public-cancel input[type="button"]{
    height: 30px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 18px;
    outline: none;
    border: none;
    background: #ff695a;
    width: 100%;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
}

.sidebar-right-public-cancel input[type="button"]:hover{
    color: white;
    background: #453c2b;
    cursor: pointer;
}

.w-30{
    width: 30px;
}

.w-50{
    width: 50px;
}

.w-60{
    width: 60px;
}
.w-70{
    width: 70px;
}
.w-80{
    width: 80px;
}

.w-100{
    width: 100px;
}

.w-120{
    width: 120px;
}

.w-140{
    width: 140px;
}

.w-160{
    width: 160px;
}

.w-180{
    width: 180px;
}

.w-190{
    width: 190px;
}

.w-200{
    width: 200px;
}

.w-215{
    width: 215px;
}

.w-300{
    width: 300px;
}

.w-400{
    width: 400px;
}
.w-500{
    width: 500px;
}
.w-600{
    width: 600px;
}
.w-800{
    width: 800px;
}

::-webkit-scrollbar {
    width: 0px;
}

#bludo input[type="image"]
{
    vertical-align: middle;
}

#overlayGalleryHide{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 999;    
    visibility:hidden;
    opacity: 0;
    transition: opacity 0.2s ease-in 0s;
	
}
#overlayNoticeHide{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 999;    
    visibility:hidden;
    opacity: 0;
    transition: opacity 0.2s ease-in 0s;
	
}


.popup {

    top: 5%;
    left: 0;
    right: 0;       
    font-size: 14px;
    margin: auto;
    width: 1010px;
    min-width: 200px;
    max-width: 1200px;
    position: absolute;
    padding: 15px 20px;
    border: 1px solid #666;
    background-color: #fefefe;
    z-index: 1000;
    border-radius: 10px;
    box-shadow: 0 0px 14px rgba(0, 0, 0, 0.4);
}
.popup-notice {
    text-align: center;
    top: 20%;
    left: 0;
    right: 0;       
    font-size: 14px;
    margin: auto;
    width: 1010px;
    min-width: 200px;
    max-width: 650px;
    position: absolute;
    padding: 15px 20px;
    border: 1px solid #666;
    background-color: #fefefe;
    z-index: 1000;
    border-radius: 10px;
    box-shadow: 0 0px 14px rgba(0, 0, 0, 0.4);
}

.popup-notice-title{
    border-bottom: 1px solid #e1e1e1;
}

.close {
    top: 2px;
    right: 2px;
    width: 32px;
    height: 32px;
    position: absolute;
    border: none;
    border-radius: 25%;
    background-color: #ff695a;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    cursor: pointer;
    outline: none;
}
.close:before {
    color: rgba(255, 255, 255, 0.9);
    content: "X";
    font-size: 20px;
    font-weight: normal;
    text-decoration: none;
}
.close:hover {
    background-color: #453c2b;
}

.notice-close{
    
    width: 200px;
    border: none;
    outline: none;
    height: 30px;
    font-size: 18px;
    font-weight: bold;
    padding: 5px 30px;
    color: white;
    background-color: #453c2b;
    border-radius: 10px;
    box-shadow: 0px 2px 5px rgb(0 0 0 / 50%);
}

.notice-close:hover {
    background-color: #ffdea1;
    color:#453c2b;
    cursor: pointer;
}

#gallery{
    display: flex;
    flex-wrap: wrap;
    margin: 20px 0;
    overflow-y: scroll;
    height: 70vh;
}

.gallery-item{
    margin: 10px;    
    width: 100px;
    height: 100px;
}

.gallery-item label{
    /*border: 2px solid #e1e1e1;*/
}

.gallery-item img{
    height: 100px;
    width: 100px;
    cursor: pointer;
    border: 2px solid #e1e1e1;
}

.gallery-item img.img-check{
    height: 20px;
    width: 20px;
    top: -100px;
    left: 37px;
    position: relative;
    visibility: hidden;
    border: none;
}

[id^=radio-] {
  display: none;
}

[id^=radio-] + label {
  display: inline-block;
  vertical-align: middle;
  
}

/*[id^=radio-]:checked + label .img-check  {
  visibility: visible;
}*/

#note-container{
    display: flex;
    flex-direction: column;
    position: fixed;
    z-index: 1000;
    right: 0;
}

.note {
    right: 0;       
    font-size: 14px;
    margin: auto;
    width: 250px;
    min-width: 200px;
    max-width: 1200px;
   
    padding: 15px 20px;
    border: 1px solid #666;
    background-color: #fefefe; 
    color: black;
    z-index: 1000;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    box-shadow: 0 0px 5px rgba(0, 0, 0, 0.4);
    display: none;
    background: rgb(255 255 255);
    border-left: 15px solid white;
}

.note p{
    color: black;
}

#tbl-report{
    font-size: 10px;
    border-collapse: collapse;
}

td{
    text-align: center;
    border: 1px solid black;
}

#export-block input[type="button"] {
    height: 30px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 18px;
    outline: none;
    border: none;
    background: #6ddb87;
    width: 250px;
    box-shadow: 0px 2px 5px rgb(0 0 0 / 50%);
}
    

#export-block input[type="button"]:hover {
    color: white;
    background: #453c2b;
    cursor: pointer;
    
}

#report-date{
    border-radius: 5px;
    margin: 5px;
    border: none;
    padding: 5px;
    font-size: 16px;
    outline: none;
    box-shadow: 0px 2px 5px rgb(0 0 0 / 50%);
}


/*++ SETTINGS*/
#block-setting-time, #block-setting-notice
{
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    border-bottom: 1px solid #453c2b94;
}

#block-setting-save
{
    text-align: center;
}

#settings-time
{
    border-radius: 10px;
    border: none;
    box-shadow: 0px 2px 5px rgb(0 0 0 / 50%);
    font-size: 24px;
    padding: 5px;
    margin: 0 20px;
}

#btn-settings-save
{
    height: 30px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 18px;
    outline: none;
    border: none;
    background: #6ddb87;
    width: 250px;
    box-shadow: 0px 2px 5px rgb(0 0 0 / 50%);
    cursor: pointer;
}

#btn-settings-save:hover{
    color: white;
    background: #453c2b;
    cursor: pointer;
}

#settings-notice
{
    height: 100px;
    width: 50%;
    resize: none;
    box-shadow: 0px 2px 5px rgb(0 0 0 / 50%);
    border-radius: 10px;
    border: none;
    padding: 5px;
    margin: 0 20px;
    font-size: 18px;
}

.div-col-settings
{
    display: flex;
    flex-direction: column;
    margin: 25px;
}

/*-- SETTINGS*/


/*++ AUTORIZATION*/
.title-system{
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.title-system-col-left{
    display: flex;
    align-items: center;
    padding-left: 25px;

}
.title-system-col-center{
    display: flex;
    align-items: center;
    flex-grow: 1;
    justify-content: center;
}
.title-system-col-right{
    display: flex;
    align-items: center;
    padding-right: 25px;
}

.title-system-col-right div:first-child{
    margin-right: 20px;
    color: white;
}

.title-system-index{
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 14px;
}

.title-system-index-col-left{
    width: 15%;
}

.title-system-index-col-center{
    width: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    	font-size: 30px;
    font-weight: bold;
       padding-top: 50px;
}

.title-system-index-col-center *{
 color: white;
}

.title-system-index-col-right{
   width: 15%;
   text-align: right;
   padding-right: 50px;
}

.title-system-index-col-center h1{
    color: white;

}

.login-page {
  margin-top: 150px;
}
.form {
  position: relative;
  z-index: 1;
  background: #ffffffa3;
  max-width: 450px;
  margin: 0 auto 100px;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 40px;
  text-align: center;
  box-shadow : 0px 0px 5px rgba(0, 0, 0, 0.3);
  border-radius : 16px;
}
.form input {
  outline: 0;
  width: 100%;
  border: 0;
  margin: 0 0 30px;
  box-sizing: border-box;
  font-size: 18px;
  color: black;
  height: 50px;

}
.form input[type="submit"] {
  text-transform: uppercase;
    outline: 0;
    background: #453c2b;
    width: 200px;
    border-radius: 16px;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 900;
    cursor: pointer;
    height: 40px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3)
}
.form input[type="submit"]:hover,.form button:active,.form button:focus {
  background: #ffdea1;
  color: #453c2b;
}
.form input[type="text"], .form input[type="password"]
{
    box-shadow : 0px 0px 5px rgba(0, 0, 0, 0.3);
    padding-left: 10px;
  border: none;
  border-radius : 16px;
}


.login-page-error{
    color:red;
}
/*-- AUTORIZATION*/

#overlayLoadingHide{
    display: flex;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    overflow: auto;
    visibility:hidden;
    opacity: 0;
    transition: opacity 0.2s ease-in 0s;
	
}

.popupLoading {

    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-date{
    position: fixed;
    bottom: 0px;
    width: inherit;
    margin: 10px;
    padding: 12px;
    color: #453c2b;
    font-weight: bold;
    margin-left: 30px;
    text-align: center;
}

#overlayPassHide{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 999;
    overflow: auto;
    visibility:hidden;
    opacity: 0;
    transition: opacity 0.2s ease-in 0s;
	
}

.passPopup {

    top: 5%;
    left: 0;
    right: 0;       
    font-size: 14px;
    margin: auto;
    width: 650px;
    min-width: 200px;
    max-width: 1200px;
    position: absolute;
    padding: 15px 20px;
    border: 1px solid #666;
    background-color: #fefefe;
    z-index: 1000;
    border-radius: 10px;
    box-shadow: 0 0px 14px rgba(0, 0, 0, 0.4);
}


@media screen and (max-width: 600px) {
    
    main{
        height: 280vh;
    }
    .login-page 
    {
        margin-top: 50px;
    }
}
